QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#749404 | #7787. Maximum Rating | yld | WA | 1ms | 3824kb | C++20 | 2.4kb | 2024-11-15 00:22:28 | 2024-11-15 00:22:29 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define endl '\n'
#define ls rt<<1
#define rs rt<<1|1
using namespace std;
const int MAXN=1e6+5;
struct SegmentTree{
int l,r,sum,num;
}tr[MAXN];
void update(int rt)
{
tr[rt].sum=tr[ls].sum+tr[rs].sum;
tr[rt].num=tr[ls].num+tr[rs].num;
}
void build(int l,int r,int rt)
{
tr[rt].l=l,tr[rt].r=r;
if(l==r) return;
int mid=l+r>>1;
build(l,mid,ls);
build(mid+1,r,rs);
update(rt);
}
void modify(int pos,int rt,int c)
{
if(tr[rt].l==tr[rt].r)
{
tr[rt].sum+=c;
if(c>0) tr[rt].num++;
else tr[rt].num--;
return;
}
int mid=tr[rt].l+tr[rt].r>>1;
if(pos<=mid) modify(pos,ls,c);
else modify(pos,rs,c);
update(rt);
}
vector<int> X;
int query(int l,int r,int rt,int sum)
{
if(l==r)
{
return min(tr[rt].num,sum/X[l-1]);
}
int mid=l+r>>1;
if(tr[rt].sum>=sum) return query(l,mid,ls,sum);
else return tr[ls].num+query(mid+1,r,rs,sum-tr[ls].sum);
}
void solve()
{
int n,q;
cin>>n>>q;
vector<int> a(n+1);
vector<pair<int,int>> ask(q+1);
for(int i=1;i<=n;i++)
{
cin>>a[i];
if(a[i]>0) X.push_back(a[i]);
}
for(int i=1;i<=q;i++)
{
cin>>ask[i].first>>ask[i].second;
if(ask[i].second>0) X.push_back(ask[i].second);
}
sort(X.begin(),X.end());
X.erase(unique(X.begin(),X.end()),X.end());
int len=X.size();
if(len==0) {cout<<1<<endl;return;}
build(1,len,1);
int tot=0;
for(int i=1;i<=n;i++)
{
if(a[i]>0)
{
int pos=lower_bound(X.begin(),X.end(),a[i])-X.begin()+1;
modify(pos,1,a[i]);
}
else tot-=a[i];
}
for(int i=1;i<=q;i++)
{
int now=ask[i].first;
if(a[now]<=0) tot+=a[now];
else
{
int pos=lower_bound(X.begin(),X.end(),a[now])-X.begin()+1;
modify(pos,1,-a[now]);
}
a[now]=ask[i].second;
if(a[now]<=0) tot-=a[now];
else
{
int pos=lower_bound(X.begin(),X.end(),a[now])-X.begin()+1;
modify(pos,1,a[now]);
}
cout<<query(1,len,1,tot)+1<<endl;
}
}
signed main()
{
cin.tie(0)->sync_with_stdio(0);
int t=1;
while(t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3748kb
input:
3 5 1 2 3 3 4 2 -2 1 -3 3 1 2 1
output:
1 2 2 2 3
result:
ok 5 number(s): "1 2 2 2 3"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
3 5 1 2 3 3 4 2 -2 1 3 3 1 2 1
output:
1 2 1 2 1
result:
ok 5 number(s): "1 2 1 2 1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
1 1 1000000000 1 1000000000
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
1 1 -1000000000 1 -1000000000
output:
1
result:
ok 1 number(s): "1"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
1000 1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
output:
946 65 252 410 915 592 983 487 343 899 809 432 586 587 139 464 804 84 476 699 504 149 579 352 375 856 545 166 140 657 568 509 275 710 873 430 537 879 301 1 298 970 923 510 984 642 55 879 941 344 464 788 917 994 571 610 491 442 926 101 986 840 624 613 425 345 816 423 275 221 317 113 386 116 469 260 4...
result:
ok 1000 numbers
Test #6:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
1000 1000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000000 1 -1000000...
output:
500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 ...
result:
ok 1000 numbers
Test #7:
score: -100
Wrong Answer
time: 1ms
memory: 3596kb
input:
1000 1000 -485078954 -474724347 -284958745 -99994191 -853392841 -796786314 -87134718 -861459498 -982809180 -184620712 -618476092 -244916830 -349486182 -751407510 -874417202 -419521829 -888338757 -735353446 -426330733 -715383449 -48093437 -359419189 -474876639 -887614191 -157085227 -51186523 -4851821...
output:
2 3 4 5 6 7 8 9 10 11 12 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 51 52 53 54 55 56 57 58 59 60 60 61 62 63 64 65 65 66 67 68 69 70 71 72 73 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 88 89 90 91 92 92 93 94 95 96...
result:
wrong answer 746th numbers differ - expected: '505', found: '262'