μκ° μ ν | λ©λͺ¨λ¦¬ μ ν | μ λ΅ λΉμ¨ |
2 μ΄ | 512 MB | 46.680% |
μ£Όμ΄μ§ NμΌ λμμ λ°±μ€μ΄κ° μ΅λμ μ΄μ΅μ λ³Ό μ μλλ‘ μΌμ μ νν΄μΌ νλ€.
νλ Έλ μ΄μ
μμνλ λ μ§λ₯Ό st, λλλ λ μ§λ₯Ό end 보μλ₯Ό p λΌκ³ λ΄€μ λ end κ°μ κΈ°μ€μΌλ‘ μ€λ¦μ°¨μ μ λ ¬μ νμ¬ pλ₯Ό λνλ€κ° νλ €λ²λ Έλ€.. λΆλͺ 2λ μ μ€ν°λνλ©΄μ νμμ λλ λκ΅°κ°κ° μ΄λ κ² νμμλλ° μμΈμ²λ¦¬κ° λ μ€λ₯΄μ§ μμ dpλ‘ κ³ μ³μ λ€μ νμλ€.
λ©λͺ¨λ¦¬ | μκ° |
1988 KB | 0 ms |
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
|
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef pair<int, int> p;
vector<pair<p, int>> v;
bool cmp(pair<p, int > a, pair<p, int> b) {
return a.first.second < b.first.second;
}
int n;
int main() {
scanf("%d", &n);
for (int i = 1, a, b; i <= n; i++) {
scanf("%d %d", &a, &b);
v.push_back({ {i, i+a}, b });
}
sort(v.begin(), v.end(), cmp);
int st = 0, end = 0, ans = 0;
for (int i = 0; i < v.size(); i++) {
if (v[i].first.second > n+1) continue;
if (v[i].first.first >= end) {
ans += v[i].second;
end = v[i].first.second;
}
}
printf("%d", ans);
return 0;
}
|
cs |
νλ Έλ μ½λλ₯Ό λ³΄κ³ μΆλ€λ©΄ μ¬κΈ°λ‘...
'π₯ PS(Problem Solving) π₯ > BOJ' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[BOJ] #16929 Two Dots (0) | 2019.09.29 |
---|---|
[BOJ] #6359 λ§μ·¨ν μλ² (0) | 2019.09.19 |
[BOJ] #2309 μΌκ³± λμμ΄ (0) | 2019.09.19 |
[BOJ] #14888 μ°μ°μ λΌμλ£κΈ° (0) | 2019.09.04 |
[BOJ] #1182 λΆλΆμμ΄μ ν© (0) | 2019.09.04 |
λκΈ