이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define N 200005
#define int long long
using namespace std;
struct BIT{
vector<int> bit;
int n;
BIT(int size){
n = size+1;
bit.assign(n,0);
}
void upd(int pos,int val){
for(;pos > 0;pos -= pos&-pos){
bit[pos] += val;
}
}
int get(int pos){
int ret = 0;
for(;pos < n;pos += pos&-pos){
ret += bit[pos];
}
return ret;
}
int get(int l,int r){
return get(r) - get(l-1);
}
};
int n;
int h[N],k[N];
vector<int> v;
int ans = 0;
bool ck(int x){
int pos = 1;
ans = 0;
BIT bt(1e5);
for(int i=0;i<n;i++){
while(pos <= n && bt.get(pos) >= x)pos++;
if(pos == n+1)return 0;
if(pos-1 > h[v[i]] - k[v[i]])return 0;
bt.upd(pos + k[v[i]] - 1,1);
}
for(int i=1;i<=1e5;i++){
//cout << i << " " << bt.get(i) << endl;
ans += min(bt.get(i),x) * (min(bt.get(i),x) - 1)/2;
}
return 1;
}
void solve(){
cin >> n;
for(int i=1;i<=n;i++){
cin >> h[i] >> k[i];
v.push_back(i);
}
sort(v.begin(),v.end(),[&](int a,int b){
return (h[a] - k[a]) < (h[b] - k[b]);
});
int l = 1,r = 1e5;
while(l < r){
int m = (l+r)/2;
if(ck(m)){
r = m;
}
else l = m+1;
}
ck(l);
cout << ans << endl;
}
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#ifdef Local
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif
int t=1;
//cin>>t;
while(t--){
solve();
}
#ifdef Local
cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
#endif
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |