Recent Posts
Notice
No Rules Rules
저울 (feat. 백준, 2437번) 본문
728x90
반응형
저울
https://www.acmicpc.net/problem/2437
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 1;
multiset<int> arr;
cin >> N;
for(register int n = 0, v; n < N; ++n)
cin >> v, arr.insert(v);
for(auto& v : arr){
if(ans < v)
break;
ans += v;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
정답이 될수 있는 가장 작은 양수는 1이므로 입력값중 작은 값부터 정답과 비교하여 정답을 증가시켜 나간다면 비교가 불가한 값이 정답이 됩니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
최솟값 찾기 (feat. 백준, 11003번) (0) | 2023.02.24 |
---|---|
거짓말 (feat. 백준, 1043번) (0) | 2023.02.23 |
바구니 순서 바꾸기 (feat. 백준, 10812번) (0) | 2023.02.23 |
너의 평점은 (feat. 백준, 25206번) (0) | 2023.02.22 |
별 찍기 - 7 (feat. 백준, 2444번) (0) | 2023.02.22 |
Comments