Recent Posts
Notice
No Rules Rules
스네이크버드 (feat. 백준, 16435번) 본문
728x90
반응형
스네이크버드
https://www.acmicpc.net/problem/16435
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, L;
priority_queue<int, vector<int>, greater<int>> arr;
cin >> N >> L;
for(register int n = 0, v; n < N; ++n)
cin >> v, arr.push(v);
while(!arr.empty()){
if(L < arr.top())
break;
++L, arr.pop();
}
cout << L;
return 0;
}
// *&)*@*
반응형
초기값 L 보다 작거나 같은 값이 있다면 L을 1씩 증가시켜 나가면 됩니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
슈퍼 마리오 (feat. 백준, 2851번) (0) | 2023.02.20 |
---|---|
후위 표기식 (feat. 백준, 1918번) (0) | 2023.02.20 |
ABCDE (feat. 백준, 13023번) (0) | 2023.02.17 |
Gorani Command (feat. 백준, 27445번) (0) | 2023.02.17 |
그래서 대회 이름 뭐로 하죠 (feat. 백준, 27466번) (0) | 2023.02.16 |
Comments