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
- 알고리즘
- 수학
- 시뮬레이션
- 브루트포스
- 다이나믹 프로그래밍
- Unreal Engine 5
- DFS
- Team Fortress 2
- BFS
- 그리디 알고리즘
- 다익스트라
- 투 포인터
- 그래프
- 자료구조
- ue5
- 유니티
- VR
- 누적 합
- 우선순위 큐
- 재귀
- 유니온 파인드
- 백트래킹
- XR Interaction Toolkit
- 정렬
- 백준
- 트리
- 문자열
- 스택
- 구현
- c++
Archives
- Today
- Total
1일1알
백준 13904번 과제 C++ 본문
https://www.acmicpc.net/problem/13904
그리디 알고리즘을 이용하였다.
1. 점수 순으로 내림차순 정렬
2. 점수에 해당하는 날에 수행할 과제가 아직 없으면 해당하는 날에 추가, 있으면 전날들을 탐색하면서 없는날에 추가
#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;
int n;
vector<int> res;
vector<pair<int, int>> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
res = vector<int>(1001, 0);
v = vector<pair<int, int>>(1000);
for (int i = 0; i < n; i++) {
int d, w;
cin >> d >> w;
v[i] = { w,d };
}
sort(v.begin(), v.end(), greater<>());
for (int i = 0; i < n; i++) {
int day = v[i].second;
int score = v[i].first;
for (int j = day; j >= 1; j--) {
if (res[j] == 0) {
res[j] = score;
break;
}
}
}
int ans = 0;
for (auto a : res) {
ans += a;
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 5545번 최고의 피자 C++ (0) | 2022.12.13 |
---|---|
백준 1485번 정사각형 C++ (0) | 2022.12.12 |
백준 1774번 우주신과의 교감 C++ (0) | 2022.12.10 |
백준 1613번 역사 C++ (0) | 2022.12.09 |
백준 22352번 항체 인식 C++ (0) | 2022.12.08 |