Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 안드로이드 스튜디오
- 삼성 코딩테스트
- 평창동계올림픽
- 성화봉송
- DP
- 캘리그라피
- 이분탐색
- 그리디 알고리즘
- 언어의 온도
- lower_bound
- 비트마스크
- boj
- Segment Tree
- BOJ 2098
- 성화봉송주자
- upper_bound
- BFS
- 외판원 순회
- 인간이 그리는 무늬
- 위상정렬
- 생활코딩
- yolo
- 다음 API
- 창훈쓰다
- 백트레킹
- 영어회화 100일의 기적
- MST
- 다이나믹 프로그래밍
- 다음 지도 api
- multiset
Archives
- Today
- Total
Hoon222y
[BOJ 1781] 컵라면 본문
https://www.acmicpc.net/problem/1781
그리디인것처럼 보이고 그리디로 풀면된다 .
그냥 정렬하고 최대값만 뽑았다가 개망한건 눈물 ..
주의할점은 큐에 넣어주면서 데드라인에 맞게 정답 큐 사이즈를 조절해 주면 된다는것이다.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 | #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <stack> #include <deque> #include <queue> #include <cmath> #include <stdio.h> #define INF 1e9 typedef long long ll; using namespace std; priority_queue<int> pq; int n,a,b; vector<pair<int,int>> v; int main(){ cin >>n; for(int i=0;i<n;i++){ cin >>a >>b; v.push_back({a,b}); } sort(v.begin(),v.end()); for(int i=0;i<n;i++){ int dline = v[i].first; int cup = v[i].second; pq.push(-cup); while(pq.size()>dline){ pq.pop(); } } int ans= 0; while(pq.size()){ ans -= pq.top(); pq.pop(); } cout <<ans <<endl; return 0; } | cs |
'코딩 > BOJ & 알고스팟' 카테고리의 다른 글
[BOJ 2458] 키 순서 (0) | 2017.08.27 |
---|---|
[BOJ 1744] 수 묶기 (0) | 2017.08.27 |
[BOJ 3273] 두 수의 합 (0) | 2017.08.24 |
[BOJ 11058] 크리보드 (0) | 2017.08.24 |
[BOJ 13700] 완전범죄 (0) | 2017.08.24 |
Comments