Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- C#
- 백준
- 유니티
- Lv.3
- 백준 1103번 c++
- 백준 1103번 게임
- 백준 2870번
- Algorithm
- 백준 1103번
- Unity
- 코테
- 프로그래머스
- 2870번 c++
- Lv2
- 플레이어 이동
- dfs
- 2468 c++
- 수학숙제
- 백준 17070번 c++
- 코딩테스트
- 2870번 수학숙제 c++
- 오브젝트 풀링
- 2870번
- 백준 c++ 2468번
- 2870번 수학숙제
- 백준 c++ 2870번
- 17070번
- Beakjoon
- 백준 17070번
- c++
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.2 시소 짝꿍 본문
https://school.programmers.co.kr/learn/courses/30/lessons/152996
1. 정답코드 및 핵심 아이디어, 유의사항
- 제한사항에 weights 범위가 넓으므로, 완전탐색으로는 시간 초과
- 같은 몸무게인 경우를 제외하면 2N, 3N, 4N 값을 각 비교한 9가지의 경우의 수가 2개 이상 만족할 수 없음 // (핵심)
- 2N, 3N, 4N 값을 각 intArray 배열에 담아 짝인 개수를 구하고, 같은 몸무게인 사람은 따로 처리
+ 주석참조
using System;
public class Solution
{
public long solution(int[] weights)
{
int[] intArray = new int[4001];
long answer = 0;
int count = 0; // 같은 몸무게를 가진 사람의 수
int tempNum = 0; // 이전 사람의 몸무게
// 1. 같은 몸무게를 가진 사람의 수를 체크하기 위한 정렬
Array.Sort(weights);
foreach (int weight in weights)
{
// 2. intArray에 2N, 3N, 4N 넣기
intArray[weight * 2]++;
intArray[weight * 3]++;
intArray[weight * 4]++;
// 3. 같은 몸무게를 가진 사람이 있는지 체크하고 예외처리
if (tempNum == weight)
{
count++;
answer -= count * 2; // 예외처리
}
else
{
tempNum = weight;
count = 0;
}
}
// 4. 균형을 이루는 사람 체크
foreach (int num in intArray)
if (num > 1)
answer += Function(num);
return answer;
}
// 짝 짓는 경우의 수 구하는 함수
public long Function(int num)
{
long total = 0;
for (int i = 1; i < num; i++)
total += i;
return total;
}
}
'CodingTest > Programmers Lv.2' 카테고리의 다른 글
[프로그래머스 C#] Lv.2 행렬 테두리 회전하기 (2) | 2023.11.03 |
---|---|
[프로그래머스 C#] Lv.2 숫자 카드 나누기 (0) | 2023.10.31 |
[프로그래머스 C#] Lv.2 뒤에 있는 큰 수 찾기 (0) | 2023.09.18 |
[프로그래머스 C#] Lv.2 숫자 변환하기 (0) | 2023.09.07 |
[프로그래머스 C#] Lv.2 타겟 넘버 (0) | 2023.09.05 |