알고리즘/BOJ
[백준] 1781 컵라면
세진짱
2019. 8. 27. 22:46


그리디문제인제 복잡하게 생각해서 많이 틀렸다
나의 틀린 접근법은 각 날 마다 최대값을 두고 나머지 날 들은 pq 에 넣었다
그리고 각날의 최대값과 나머지날들을 비교해서 큰값을 넣었다
많은 것들을 고려했었는데 그럴 필요가 없었다
데드라인 순으로 정렬하고 내가 보고있는 데드라인까지 중 큰 값들만 남기고 버리면 된다
pq를 이용하면 쉽게 풀 수 있다
소스코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
pair<int,int> arr[200200];
int n;
int main(){
//freopen("input.txt","r",stdin);
scanf(" %d",&n);
for(int i=0;i<n;i++) scanf(" %d %d",&arr[i].first,&arr[i].second);
sort(arr,arr+n);
priority_queue<int> pq;
for(int i=0;i<n;i++){
int d = arr[i].first;
pq.push(-arr[i].second);
while(d<pq.size()) pq.pop();
}
int ans=0;
printf("%d\n",-ans);
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|