#include <bits/stdc++.h>
using namespace std;
#define int long long
int gauss(int x) {
return x * (x + 1) / 2;
}
struct Data {
int total;
int need;
};
bool operator < (Data a, Data b) {
return a.total < b.total;
}
const int N = (int) 1e5 + 7;
const int INF = (int) 1e18;
int n;
int cnt[N];
Data guys[N];
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
//freopen ("input", "r", stdin);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> guys[i].total >> guys[i].need;
}
sort(guys + 1, guys + n + 1);
for (int i = 1; i <= n; i++) {
int total = guys[i].total;
int need = guys[i].need;
/// cnt e in ordine ordine descrescatoare
int L = total - need + 1;
int R = total;
for (int j = L; j <= R; j++) {
cnt[j]++;
}
sort(cnt + 1, cnt + total + 1);
reverse(cnt + 1, cnt + total + 1);
}
int total = 0;
for (int i = 1; i < N; i++) {
total += gauss(cnt[i] - 1);
}
cout << total << "\n";
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
2 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
332 KB |
Output is correct |
2 |
Correct |
518 ms |
1192 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1089 ms |
828 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1083 ms |
992 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1089 ms |
1196 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1093 ms |
2176 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1083 ms |
1984 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1079 ms |
2108 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |