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 |
29 | 30 | 31 |
Tags
- GeeksForGeeks
- NRVO
- const
- IFileDialog
- Frustum
- winapi
- UE5
- RootMotion
- Programmers
- 1563
- DirectX11
- softeer
- 언리얼엔진5
- UnrealEngine5
- RVO
- C
- DeferredRendering
- 오블완
- directx
- 2294
- baekjoon
- 줄 세우기
- UnrealEngine4
- 프로그래머스
- 백준
- 티스토리챌린지
- 팰린드롬 만들기
- C++
- Unreal Engine5
- algorithm
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2437번 : 저울 본문
https://www.acmicpc.net/problem/2437
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
29
30
31
32
|
int n;
int weights[1001];
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> weights[i];
}
sort(weights, weights + n);
int end = 1;
for (int i = 0; i < n; ++i)
{
if (weights[i] > end) break;
end += weights[i];
}
cout << end;
}
|
cs |
아무리 생각해도 방법이 떠오르지 않아 다른사람 풀이를 봤다.
이분 설명이 제일 좋다.
결과적인것만 보면, 선이 끊어지는 순간이 만들 수 없는 값이므로 그 지점을 찾아야하는 것 같다.
매 반복마다 선의 끝부분이 새로 시작해야하는 지점보다 크면 연결이 되는거니 그대로 값을 누적시키고, 작아지는순간 끊어지는 것이다. (선의 연결여부를 구하는걸 생각해보면 된다)
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 14719번 : 빗물 (1) | 2023.11.27 |
---|---|
[Algorithm]Baekjoon 2812번 : 크게 만들기 (1) | 2023.11.24 |
[Algorithm]Baekjoon 2109번 : 순회강연 (1) | 2023.11.20 |
[Algorithm]Baekjoon 1202번 : 보석 도둑 (1) | 2023.11.20 |
[Algorithm]Baekjoon 4920번 : 테트리스 게임 (0) | 2023.11.20 |