No Rules Rules

스네이크버드 (feat. 백준, 16435번) 본문

생활/코테

스네이크버드 (feat. 백준, 16435번)

개발하는 완두콩 2023. 2. 20. 11:41
728x90
반응형

스네이크버드
https://www.acmicpc.net/problem/16435

 

16435번: 스네이크버드

첫 번째 줄에 과일의 개수 N (1 ≤ N ≤ 1,000) 과 스네이크버드의 초기 길이 정수 L (1 ≤ L ≤ 10,000) 이 주어집니다. 두 번째 줄에는 정수 h1, h2, ..., hN (1 ≤ hi ≤ 10,000) 이 주어집니다.

www.acmicpc.net

 

// 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
반응형
Comments