QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#743923 | #7787. Maximum Rating | Rightt | WA | 2ms | 9776kb | C++20 | 2.4kb | 2024-11-13 20:19:21 | 2024-11-13 20:19:21 |
Judging History
answer
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
using ll = long long;
const int N = 4e5 + 10;
int n, q, a[N], idx[N], x[N];
map<int, int> mp;
struct Tree{
int n, c[N], num[N];
int lowbit(int x){return x & -x;}
void modify(int x, int val){
for (; x <= n; x += lowbit(x)) c[x] += val;
}
void modify_num(int x, int val){
for (; x <= n; x += lowbit(x)) num[x] += val;
}
ll query(int x){ //[1, x]
ll res = 0;
for (; x; x -= lowbit(x)) res += c[x];
return res;
}
ll query_num(int x){ //[1, x]
ll res = 0;
for (; x; x -= lowbit(x)) res += num[x];
return res;
}
int check(ll sum){
int l = 1, r = n;
while (l < r){
int mid = (l + r + 1) / 2;
if (query(mid) <= sum) l = mid;
else r = mid - 1;
}
return query_num(l);
}
}g;
void solve(){
cin >> n >> q;
for (int i = 1; i <= n; i ++ ) cin >> a[i];
for (int i = 1; i <= q; i ++ ) cin >> idx[i] >> x[i];
vector<int> v(1);
for (int i = 1; i <= n; i ++ ){
if (a[i] > 0){
v.push_back(a[i]);
}
}
for (int i = 1; i <= q; i ++ ){
if (x[i] > 0){
v.push_back(x[i]);
}
}
v.push_back(0);
sort(v.begin() + 1, v.end());
for (int i = v.size()-1; i >= 0; i -- ){
mp[v[i]] = i + 1;
}
ll sum = 0;
g.n = v.size();
for (int i = 1; i <= n; i ++ ){
if (a[i] > 0){
int ip = mp[a[i]] ++;
g.modify(ip, a[i]);
g.modify_num(ip, 1);
}else{
sum += a[i];
}
}
for (int i = 1; i <= q; i ++ ){
int y = idx[i];
if (a[y] <= 0){
sum -= a[y];
}else{
int ip = -- mp[a[y]];
g.modify(ip, - a[y]);
g.modify_num(ip, -1);
}
a[y] = x[i];
if (a[y] <= 0){
sum += a[y];
}else{
int ip = mp[a[y]] ++;
g.modify(ip, a[y]);
g.modify_num(ip, 1);
}
//二分答案
cout << g.check( - sum) + 1 << '\n';
}
}
signed main(){
IOS;
int t = 1;
// cin >> t;
while (t -- ){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 9648kb
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: 2ms
memory: 9648kb
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: 9748kb
input:
1 1 1000000000 1 1000000000
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 7848kb
input:
1 1 -1000000000 1 -1000000000
output:
1
result:
ok 1 number(s): "1"
Test #5:
score: 0
Accepted
time: 2ms
memory: 9776kb
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: 2ms
memory: 9660kb
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: 2ms
memory: 9716kb
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: '506'