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 | 31 |
Tags
- 3344
- 탄막
- 윈도우
- 18249
- 3273
- SWEA
- 단어 수학
- 회의실 배정
- 걷는건귀찮아
- 유니티
- mysqld.sock
- 자료구조 목차
- 문자열 압축
- AI Hub
- 원형
- 탄막 이동
- c#
- 토글 그룹
- 그리디알고리즘
- 영상 프레임 추출
- 백준
- 마우스 따라다니기
- 수 만들기
- 우분투
- 2020 KAKAO BLIND RECRUITMENT
- MySQL
- 탄막 스킬 범위
- 강의실2
- 알고리즘 목차
- 알고리즘
Archives
- Today
- Total
와이유스토리
[DP] 백준 2180 소방서의 고민 C++ 본문
https://www.acmicpc.net/problem/2180
#include<iostream>
#include<vector>
#include<algorithm>
#define MAX 100001
using namespace std;
int n ,a, b;
int ans;
vector<pair<int, int>> v;
bool cmp(pair<int, int> p, pair<int, int> q) {
int a = p.first, b = p.second, c = q.first, d = q.second;
if (a == 0) return false;
else if (c == 0) return true;
else if ((b == 0) && (d == 0)) return a < c;
return b * c < a * d;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a >> b;
v.push_back({ a,b });
}
sort(v.begin(), v.end(), cmp);
a = 0;
for (int i = 0; i < n; i++) {
a = v[i].first * ans + v[i].second;
ans += a;
ans %= 40000;
}
cout << ans;
}
'코딩테스트 > 동적계획법' 카테고리의 다른 글
[트리 DP(Top-Down)] 백준 2213 트리의 독립집합 C++ (0) | 2022.01.27 |
---|---|
[트리 DP(Top-Down)] 백준 1949 우수 마을 C++ (0) | 2022.01.27 |
[DP] 백준 14908 구두 수선공 C++ (0) | 2022.01.27 |
[DP] 백준 1757 달려달려 C++ (0) | 2022.01.27 |
[DP] 백준 1463 1로 만들기 C++ (0) | 2022.01.27 |
Comments