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
- DFS
- 백준
- BFS
- 브루트포스
- 수학
- 알고리즘
- 구현
- 트리
- c++
- 다이나믹 프로그래밍
- 다익스트라
- 누적 합
- 문자열
- 그리디 알고리즘
- 우선순위 큐
- VR
- XR Interaction Toolkit
- 그래프
- 유니티
- Team Fortress 2
- 재귀
- 스택
- 백트래킹
- 자료구조
- Unreal Engine 5
- 시뮬레이션
- 투 포인터
- 유니온 파인드
- ue5
- 정렬
Archives
- Today
- Total
1일1알
백준 2109번 순회강연 C++ 본문
https://www.acmicpc.net/problem/2109
n번째 날 가능한 강연 중 가장 돈을 많이 받는 강연 : n ~ 마지막 날 중 가장 돈을 많이 받는 강연
제일 뒤에 날부터 검사
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
vector<multiset<int>> v(10001, multiset<int>());
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
for (int i = 0; i < n; i++) {
int p, d;
cin >> p >> d;
v[d].insert(p);
}
int money = 0;
for (int now = 10000; now >= 1; now--) {
int maxMoney = 0;
int maxIdx = -1;
for (int j = now; j <= 10000; j++) {
if (v[j].empty()) continue;
auto it = v[j].end();
--it;
int currMoney = *it;
if (currMoney > maxMoney) {
maxMoney = currMoney;
maxIdx = j;
}
}
if (maxMoney == 0) continue;
money += maxMoney;
auto it = v[maxIdx].end();
--it;
v[maxIdx].erase(it);
}
cout << money;
}
'알고리즘' 카테고리의 다른 글
백준 17178번 줄서기 C++ (0) | 2022.11.02 |
---|---|
백준 13905번 세부 C++ (0) | 2022.10.31 |
백준 15789번 CTP 왕국은 한솔 왕국을 이길 수 있을까? C++ (1) | 2022.10.29 |
백준 25195번 Yes or yes C++ (0) | 2022.10.28 |
백준 16469번 소년 점프 C++ (0) | 2022.10.27 |