QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#779623#7787. Maximum RatingKokomiAC ✓1003ms82872kbC++143.6kb2024-11-24 20:25:302024-11-24 20:25:30

Judging History

你现在查看的是最新测评结果

  • [2024-11-24 20:25:30]
  • 评测
  • 测评结果:AC
  • 用时:1003ms
  • 内存:82872kb
  • [2024-11-24 20:25:30]
  • 提交

answer

#include "bits/stdc++.h"

using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
#define endl "\n"

const int N = 4e5 + 10;
const ll INF = 0x3f3f3f3f3f3f3f;

ll n, m;
ll q;
vector<ll> a(N), tmp(N, 0);
map<ll, ll> mp;
struct node
{
  int l, r;
  ll cnt;
  ll sum;
} t[N << 2];
#define lu u << 1
#define ru u << 1 | 1

void build(int u, int l, int r)
{
  t[u] = {l, r, 0, 0};
  if (l == r)
    return;
  int mid = (l + r) >> 1;
  build(lu, l, mid);
  build(ru, mid + 1, r);
}

void upd(int u, int pos, ll val)
{
  if (t[u].l == t[u].r)
  {
    t[u].cnt++;
    t[u].sum += val;
    return;
  }
  int mid = (t[u].l + t[u].r) >> 1;
  if (pos <= mid)
    upd(lu, pos, val);
  else
    upd(ru, pos, val);
  t[u].cnt = t[lu].cnt + t[ru].cnt;
  t[u].sum = t[lu].sum + t[ru].sum;
}

void del(int u, int pos, ll val)
{
  if (t[u].l == t[u].r)
  {
    t[u].cnt--;
    t[u].sum -= val;
    return;
  }
  int mid = (t[u].l + t[u].r) >> 1;
  if (pos <= mid)
    del(lu, pos, val);
  else
    del(ru, pos, val);
  t[u].cnt = t[lu].cnt + t[ru].cnt;
  t[u].sum = t[lu].sum + t[ru].sum;
}

int bs(int u, ll tar)
{
  if (t[u].sum <= tar)
    return t[u].r;
  if (t[u].l == t[u].r)
  {
    if (t[u].sum <= tar)
      return t[u].r;
    return t[u].l - 1;
  }
  if (t[lu].sum >= tar)
    return bs(lu, tar);
  return bs(ru, tar - t[lu].sum);
}

ll ask(int u, int l, int r)
{
  if (t[u].l >= l && t[u].r <= r)
    return t[u].cnt;
  int mid = (t[u].l + t[u].r) >> 1;
  ll res = 0;
  if (r > mid)
    res += ask(ru, l, r);
  if (l <= mid)
    res += ask(lu, l, r);
  return res;
}
ll askpre(int u, int l, int r)
{
  if (t[u].l >= l && t[u].r <= r)
    return t[u].sum;
  int mid = (t[u].l + t[u].r) >> 1;
  ll res = 0;
  if (r > mid)
    res += askpre(ru, l, r);
  if (l <= mid)
    res += askpre(lu, l, r);
  return res;
}
void solve()
{
  cin >> n >> q;
  set<ll> st;
  ll fu = 0;
  for (int i = 1; i <= n; i++)
  {
    cin >> a[i];
    if (a[i] < 0)
      fu++;
    if (a[i] == 0)
      continue;
    st.insert(a[i]);
  }
  vector<pll> qry(q + 5);
  for (int i = 1; i <= q; i++)
  {
    cin >> qry[i].first >> qry[i].second;
    if (qry[i].second)
      st.insert(qry[i].second);
  }
  int tt = 1;
  for (auto e : st)
  {
    tmp[tt] = e;
    mp[e] = tt++;
  }
  build(1, 1, tt);
  for (int i = 1; i <= n; i++)
  {
    if (a[i])
      upd(1, mp[a[i]], a[i]);
  }
  for (int i = 1; i <= q; i++)
  {
    if (a[qry[i].first])
      del(1, mp[a[qry[i].first]], a[qry[i].first]);
    if (qry[i].second)
      upd(1, mp[qry[i].second], qry[i].second);
    if (a[qry[i].first] < 0)
      fu--;
    if (qry[i].second < 0)
      fu++;
    a[qry[i].first] = qry[i].second;
    // int pos = bs(1, 0);
    int l=1,r=tt;
    while(l<=r){
      int mid=(l+r)>>1;
      if(askpre(1,1,mid)>0){
        r=mid-1;
      }
      else l=mid+1;
    }
    int pos=r;
    ll pre = askpre(1, 1, pos);
    ll ans = ask(1, 1, pos);
    if (pre < 0 && pos < tt - 1)
    {
      ll qwq = tmp[pos + 1];
      ans += (-pre) / qwq;
    }
    // if (n == 1000)
    // {
    //   cout<<tmp[319]<<endl;
    //   cout<<"x:"<<qry[i].first<<" v:"<<qry[i].second<<endl;
    //   cout << "pos: " << pos << endl;
    //   cout << "ans: " << ans << endl;
    //   cout << "fu: " << fu << endl;
    // }
    // cout << "pos: " << pos << endl;
    // cout << "cnt: "<<ans<<endl;
    cout << ans - fu + 1 << endl;
  }
}

int main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  int _ = 1;
  // cin>>_;
  while (_--)
    solve();
  return 0;
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 9252kb

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: 9284kb

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: 9212kb

input:

1 1
1000000000
1 1000000000

output:

1

result:

ok 1 number(s): "1"

Test #4:

score: 0
Accepted
time: 0ms
memory: 9232kb

input:

1 1
-1000000000
1 -1000000000

output:

1

result:

ok 1 number(s): "1"

Test #5:

score: 0
Accepted
time: 3ms
memory: 9572kb

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: 9668kb

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: 0
Accepted
time: 4ms
memory: 9564kb

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:

ok 1000 numbers

Test #8:

score: 0
Accepted
time: 2ms
memory: 9696kb

input:

1000 1000
692178227 662595541 345515063 991152011 835514013 25683568 123726285 66892783 865428606 354216625 814472013 533064716 948349754 361975669 37940082 869044119 662812642 803704097 146471883 707522800 739525519 193714172 427089913 397196213 189039234 246429967 813126715 687459477 71112534 8404...

output:

43
51
56
64
65
74
75
86
87
95
101
108
113
120
128
133
138
139
139
144
145
148
151
156
156
158
160
161
166
168
172
174
178
181
184
187
187
189
191
194
198
202
205
206
207
209
208
208
212
213
213
212
215
219
220
221
222
223
225
228
231
234
235
235
236
236
238
238
241
243
244
244
247
247
247
248
249
25...

result:

ok 1000 numbers

Test #9:

score: 0
Accepted
time: 0ms
memory: 9704kb

input:

1000 1000
574468116 94882719 344585092 303636576 860857354 553186159 965991069 700277773 418699098 303119379 321049044 311046263 246185690 843955069 991766564 157610065 845367822 6325150 14241791 204057976 158548256 378251315 960460247 976973909 903759916 617675386 774999095 700647307 182260243 3951...

output:

1
1
1
44
62
62
62
62
62
62
62
63
75
86
86
94
94
94
94
94
94
101
106
110
109
109
110
110
114
118
120
120
125
133
137
142
149
151
151
154
158
163
164
164
166
171
166
171
171
176
178
178
178
182
184
189
191
192
192
193
194
194
199
199
200
200
200
201
201
202
202
203
203
203
203
204
205
209
211
213
216
...

result:

ok 1000 numbers

Test #10:

score: 0
Accepted
time: 0ms
memory: 9616kb

input:

1000 1000
751725297 937235315 680091610 26186557 254796915 744252261 881884780 923597346 266936883 546989425 417560660 89027810 544021626 957338248 904123848 814772232 101551928 545382694 250607919 995560445 577570993 931384678 862426799 261784312 954917086 283888096 73307963 303769720 219779023 411...

output:

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
1
1
1
1
1
...

result:

ok 1000 numbers

Test #11:

score: 0
Accepted
time: 3ms
memory: 9740kb

input:

1000 1000
-508752650 194148329 -801456523 151112987 832369235 -688290588 806491091 836936846 -122281173 356992850 -568184583 -516872363 165777265 -971767664 709095458 287512288 -240509024 222892519 809890680 -240691276 -160995890 -941338137 -110422024 -171235654 137147409 269779505 791942508 8316469...

output:

502
501
501
501
501
500
500
501
501
501
501
501
501
501
500
500
501
501
501
500
501
500
499
499
498
497
497
496
496
496
496
496
496
495
496
495
495
495
495
495
495
496
496
496
496
497
497
496
495
495
495
495
495
495
494
495
495
495
496
496
496
495
495
494
493
494
494
494
493
494
495
495
494
494
493
...

result:

ok 1000 numbers

Test #12:

score: 0
Accepted
time: 3ms
memory: 9560kb

input:

1000 1000
668917653 -912360220 -484296636 877719068 -532863859 -652299905 349419681 -27295020 117337504 915047258 669717799 -747101717 26685070 -475274955 944477505 -234513487 454335340 -77938580 827974643 579724786 32112764 -906575069 136172094 -160983053 -178633432 191196169 -702355948 -224063041 ...

output:

490
491
491
491
491
491
491
492
491
491
491
491
490
491
491
492
491
492
492
491
491
491
492
493
492
493
492
492
491
491
490
491
491
492
492
491
491
491
492
492
493
493
494
495
495
494
495
494
493
494
494
494
495
494
493
492
493
493
493
492
491
491
491
490
490
491
491
490
491
491
490
489
489
490
490
...

result:

ok 1000 numbers

Test #13:

score: 0
Accepted
time: 442ms
memory: 33096kb

input:

200000 200000
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:

72376
101111
115499
58115
162542
118228
127603
92640
159784
158521
23443
120553
3776
74867
53743
144513
110937
175487
110103
155120
90227
14151
141505
165956
73915
122548
124144
170214
87824
60252
31007
63702
179573
141360
166667
31159
15231
115256
166707
175939
169172
147787
1411
98677
10409
185322...

result:

ok 200000 numbers

Test #14:

score: 0
Accepted
time: 390ms
memory: 29156kb

input:

200000 200000
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 -100...

output:

100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000
100000...

result:

ok 200000 numbers

Test #15:

score: 0
Accepted
time: 951ms
memory: 81788kb

input:

200000 200000
-641536243 -965183184 -141619591 -549578174 -605343285 -234948471 -911248231 -720193527 -374462595 -876901055 -305631438 -321131226 -273535990 -24800331 -302573198 -104933640 -943270107 -991477211 -671845994 -877636895 -967575238 -964139845 -414345700 -424981584 -72662072 -55397356 -69...

output:

2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102...

result:

ok 200000 numbers

Test #16:

score: 0
Accepted
time: 949ms
memory: 81352kb

input:

200000 200000
535720938 467103996 857450438 172971807 714967349 587521411 299612773 913191463 178807897 661936283 790880177 161883029 24299945 457179067 314816794 183632306 607881293 211143843 900956623 913865574 820043720 588993518 487620852 859828820 273462389 315848062 600304728 176203396 8209093...

output:

546
590
723
815
911
1092
1234
1331
1383
1431
1546
1570
1606
1688
1775
1865
1924
1928
2018
2102
2146
2222
2283
2310
2367
2434
2509
2527
2528
2605
2643
2681
2694
2725
2773
2798
2815
2878
2915
2970
2982
3042
3095
3135
3152
3208
3232
3281
3331
3387
3433
3484
3539
3542
3585
3629
3634
3653
3664
3703
3732
...

result:

ok 200000 numbers

Test #17:

score: 0
Accepted
time: 1003ms
memory: 82540kb

input:

200000 200000
418010827 604423883 192956954 559085301 108906910 115024001 141877556 841543744 27045682 610839037 928860990 234831867 617103173 865529539 563610567 177230961 495469180 750201387 768726531 41804530 944099165 142126879 94620113 439606515 324619559 613464554 898613597 147922029 268493569...

output:

407
407
686
686
903
903
903
903
1040
1040
1169
1276
1276
1276
1373
1373
1392
1447
1487
1487
1576
1616
1726
1825
1927
2019
2084
2084
2084
2084
2106
2106
2183
2183
2236
2236
2236
2298
2323
2356
2356
2366
2366
2380
2380
2380
2380
2396
2448
2448
2448
2448
2448
2448
2463
2463
2506
2552
2552
2552
2581
263...

result:

ok 200000 numbers

Test #18:

score: 0
Accepted
time: 946ms
memory: 82872kb

input:

200000 200000
595268008 741743770 192026983 576602575 134250251 306090103 352738559 769896025 875283467 854709084 730405313 12813414 619971818 52541645 181000559 834393128 751653288 952822441 341529147 833306999 363121902 31696730 627990446 93013138 375776729 279677264 491889757 456077151 674608570 ...

output:

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
1
1
1
1
1
...

result:

ok 200000 numbers

Test #19:

score: 0
Accepted
time: 970ms
memory: 81852kb

input:

200000 200000
57351658 34928223 909476925 655002892 208776997 515216130 -940368197 -966780776 138873074 -25753029 690457954 76716166 -527966744 -758131285 125842758 167172371 -19895937 -793760413 -335278551 -823237951 -41838836 -541480207 -316154446 -410768030 56117119 334108006 171479183 -612288695...

output:

99817
99816
99815
99815
99815
99815
99815
99816
99816
99816
99817
99817
99817
99817
99818
99817
99817
99817
99816
99816
99817
99818
99818
99818
99819
99819
99819
99818
99818
99818
99817
99817
99817
99818
99819
99819
99818
99818
99817
99817
99817
99817
99816
99817
99817
99817
99816
99815
99815
99815
...

result:

ok 200000 numbers

Test #20:

score: 0
Accepted
time: 967ms
memory: 81352kb

input:

200000 200000
940054667 390362589 -478395896 -618391027 895421405 551206813 602560394 463954653 673459044 237334085 -366606958 -153513189 -667058939 -504728368 413102307 -649820697 969915721 662318697 -317194588 -54699391 741204407 -454839636 -607617414 -157425636 -259663722 602369466 677180729 8891...

output:

99961
99962
99961
99961
99962
99961
99960
99960
99959
99960
99960
99960
99960
99960
99960
99960
99960
99960
99959
99959
99959
99960
99960
99960
99961
99961
99961
99962
99962
99962
99962
99962
99962
99962
99962
99962
99962
99962
99962
99962
99962
99961
99962
99962
99963
99963
99963
99962
99962
99962
...

result:

ok 200000 numbers

Test #21:

score: 0
Accepted
time: 982ms
memory: 80752kb

input:

200000 200000
441576 5072440 2023913 2954529 11190505 17748338 1815339 10941986 3382122 5828328 10116163 18360940 3182013 14192311 11727773 162330 9540059 17802468 4325749 4257913 5688641 19235717 10855976 5255755 5720967 7551311 7838288 9740660 1198385 13770386 928271 14554242 4144786 1289971 26775...

output:

141090
141091
141091
141090
141091
141091
141092
141093
141093
141092
141092
141092
141091
141091
141092
141092
141093
141094
141094
141094
141093
141093
141092
141092
141092
141093
141092
141091
141091
141090
141090
141091
141091
141091
141091
141090
141090
141090
141091
141091
141091
141091
141091...

result:

ok 200000 numbers

Extra Test:

score: 0
Extra Test Passed