//#pragma GCC optimize("Ofast")
//#pragma GCC target("avx,avx2,fma")
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define uint unsigned int
#define db long double
#define pb push_back
#define ppb pop_back
#define fi first
#define se second
#define mp make_pair
#define all(x) (x).begin(), (x).end()
void dout() { cerr << '\n'; }
template <typename Head, typename... Tail>
void dout(Head H, Tail... T) {
cerr << " " << H;
dout(T...);
}
#ifdef LOCAL
#define dbg(...) cerr << #__VA_ARGS__, dout(__VA_ARGS__)
#else
#define dbg(...) ;
#endif
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef pair <int, int> pii;
const int N = 100007;
int n, h[N], k[N], cnt[N], f[N];
int main() {
ios_base::sync_with_stdio(false), cin.tie(NULL);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif
cin >> n;
int mx = 0;
for (int i = 1; i <= n; i++) {
cin >> h[i] >> k[i];
f[h[i]]++;
cnt[h[i] - k[i] + 1]++;
cnt[h[i] + 1]--;
mx = max(mx, h[i]);
}
for (int i = 1; i <= mx; i++) {
cnt[i] += cnt[i - 1];
}
for (int i = mx; i >= 1; i--) {
f[i] += f[i + 1];
}
for (int i = 1; i < mx; i++) {
ll s = 0, cur = cnt[i], nxt = cnt[i + 1];
for (int j = i + 1; j <= mx; j++) {
s += cnt[j];
}
ll l = (nxt - cur + 1) / 2 - 1, r = (f[i] - cur) + 1;
if (l < -1) {
l = -1;
}
while (l < r - 1) {
ll mid = (l + r) / 2;
if ((s - mid + (mx - i - 1)) / (mx - i) <= cur + mid) {
r = mid;
} else {
l = mid;
}
}
cnt[i] += r;
for (int j = i + 1; j <= mx; j++) {
if (r >= cnt[j]) {
r -= cnt[j];
cnt[j] = 0;
} else {
cnt[j] -= r;
r = 0;
break;
}
}
}
ll ans = 0;
for (int i = 1; i <= mx; i++) {
ll x = cnt[i];
// cerr << x << ' ';
ans += x * (x - 1) / 2;
}
// cerr << '\n';
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
Output is correct |
2 |
Correct |
5 ms |
376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
Output is correct |
2 |
Incorrect |
5 ms |
380 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
Output is correct |
2 |
Correct |
5 ms |
376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
352 ms |
696 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
300 ms |
760 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
852 ms |
1188 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1091 ms |
1656 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1096 ms |
1784 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1098 ms |
1912 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |