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 |
Tags
- 정렬
- 스택
- VR
- 트리
- 백트래킹
- 재귀
- 다익스트라
- ue5
- 그리디 알고리즘
- 유니온 파인드
- 백준
- 우선순위 큐
- c++
- 누적 합
- 자료구조
- BFS
- 그래프
- 브루트포스
- Team Fortress 2
- DFS
- 시뮬레이션
- Unreal Engine 5
- 수학
- 유니티
- 문자열
- 알고리즘
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- 투 포인터
- 구현
Archives
- Today
- Total
1일1알
백준 1417번 국회의원 선거 C++ 본문
우선순위 큐를 이용하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
priority_queue<int> pq;
int n;
int dasom;
int cnt = 0;
cin >> n;
cin >> dasom;
for (int i = 1; i < n; i++) {
int vote;
cin >> vote;
pq.push(vote);
}
if (!pq.empty()) {
while (dasom <= pq.top()) {
int maxVote = pq.top();
pq.pop();
dasom++;
cnt++;
pq.push(maxVote - 1);
}
}
cout << cnt;
};
'알고리즘' 카테고리의 다른 글
백준 1531번 투명 C++ (0) | 2022.04.30 |
---|---|
백준 1515번 수 이어 쓰기 C++ (0) | 2022.04.29 |
백준 1421번 나무꾼 이다솜 C++ (0) | 2022.04.27 |
백준 1385번 벌집 C++ (0) | 2022.04.26 |
백준 1380번 귀걸이 C++ (0) | 2022.04.25 |