QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#786262#5415. RopewayWaterSunTL 380ms24028kbC++142.3kb2024-11-26 20:56:212024-11-26 20:56:22

Judging History

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

  • [2024-11-26 20:56:22]
  • 评测
  • 测评结果:TL
  • 用时:380ms
  • 内存:24028kb
  • [2024-11-26 20:56:21]
  • 提交

answer

#include <bits/stdc++.h>
#define re register
#define fst first
#define snd second
#define int long long
#define chmin(a,b) (a = min(a,b))

using namespace std;

typedef pair<int,int> pii;
const int N = 5e5 + 10;
const int inf = (int)(1e18) + 10;
int n,k,q;
char s[N];
int arr[N],dp1[N],dp2[N],pre[N],tmp[N];

inline int read(){
    int r = 0,w = 1;
    char c = getchar();
    while (c < '0' || c > '9'){
        if (c == '-') w = -1;
        c = getchar();
    }
    while (c >= '0' && c <= '9'){
        r = (r << 3) + (r << 1) + (c ^ 48);
        c = getchar();
    }
    return r * w;
}

inline void solve(){
    fill(dp1,dp1 + n + 5,0);
    fill(dp2,dp2 + n + 5,0);
    n = read(),k = read();
    for (re int i = 1;i <= n;i++) arr[i] = read();
    scanf("%s",s + 1); q = read();
    s[0] = s[n + 1] = '1';
    deque<pii> dq; dq.push_back({0,0});
    for (re int i = 1;i <= n + 1;i++){
        while (!dq.empty() && i - dq.front().fst > k) dq.pop_front();
        dp1[i] = dq.front().snd + arr[i]; pre[i] = dq.front().fst;
        while (!dq.empty() && dq.back().snd > dp1[i]) dq.pop_back();
        if (s[i] == '1') dq.clear(); dq.push_back({i,dp1[i]});
    }
    dq.clear(); dq.push_back({n + 1,0});
    for (re int i = n;~i;i--){
        while (!dq.empty() && dq.front().fst - i > k) dq.pop_front();
        dp2[i] = dq.front().snd + arr[i];
        while (!dq.empty() && dq.back().snd > dp2[i]) dq.pop_back();
        if (s[i] == '1') dq.clear(); dq.push_back({i,dp2[i]});
    }
    while (q--){
        int x,v;
        x = read(),v = read();
        int ans = dp1[x] + dp2[x] - 2 * arr[x] + v;
        if (s[x] == '1'){
            printf("%lld\n",ans); continue;
        }
        int r = min(n + 1,x + k);
        int prex = arr[x],pos = x - k + 1; arr[x] = v;
        tmp[x] = dp1[x] - prex + v;
        for (re int i = x - 1;i >= min(0ll,x - k);i--){
            tmp[pos = i] = min(dp1[i],tmp[i + 1]);
            if (s[i] == '1') break;
        }
        for (re int i = x + 1;i <= r;i++){
            chmin(ans,tmp[max(pos,i - k)] + dp2[i]);
            if (s[i] == '1') break;
        }
        printf("%lld\n",ans); arr[x] = prex;
    }
}

signed main(){
    int T; T = read();
    while (T--) solve();
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 2ms
memory: 11924kb

input:

3
10 3
5 10 7 100 4 3 12 5 100 1
0001000010
2
2 3
6 15
5 6
1 1 1 1 1
00000
1
3 100
5 6
1 1 1 1 1
00100
1
3 100

output:

206
214
0
100

result:

ok 4 number(s): "206 214 0 100"

Test #2:

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

input:

500
19 6
285203460 203149294 175739375 211384407 323087820 336418462 114884618 61054702 243946442 19599175 51974474 285317523 222489944 26675167 300331960 1412281 324105264 33722550 169011266
1111111110110100011
18
3 127056246
5 100630226
14 301161052
2 331781882
5 218792226
2 190274295
12 49227476
...

output:

2472886431
2299111966
2796055445
2650202148
2417273966
2508694561
2285479513
2521569560
2521569560
2240907690
2577284958
2521569560
2766700195
2511807344
2521569560
2438434986
2669077215
2682112324
470735446
470735446
211705888
564509290
715543137
470735446
470735446
18
19
19
19
20
19
54
849950346
8...

result:

ok 5277 numbers

Test #3:

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

input:

50
183 160
22617237 21369258 39718669 4582413 28629717 25947766 1690897 19844235 35568283 42909820 21829213 70588436 8472484 53107624 21547259 11440081 6630789 5896457 19770793 30204510 29796593 27689811 39350369 21646987 36362667 38164292 13428410 54681069 24526477 58941286 70890011 43730474 388615...

output:

5303746210
5262479222
5346682277
5299354906
5290045662
5350552810
5343191051
5268759163
5299354906
5340227887
5299354906
5253956732
5289945955
5230918240
5287812187
5299354906
5299354906
5273800386
5299354906
5299354906
5353471727
5283662384
5230330060
5319166005
5338060400
5304825609
5268929476
526...

result:

ok 9541 numbers

Test #4:

score: 0
Accepted
time: 380ms
memory: 24028kb

input:

3
500000 891
806445768 895003544 461699845 184479965 853541910 593542573 667984604 465354540 303586741 243665567 285056069 294245042 675066412 456713460 215929340 756894934 773828574 317143965 451366539 891390118 436168373 633752416 78781758 298770626 35280548 226923750 96421159 523108871 265102517 ...

output:

5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
520...

result:

ok 9000 numbers

Test #5:

score: -100
Time Limit Exceeded

input:

4
500000 3000
303543765 129078653 192039183 226458565 208138322 436645868 210834986 135457074 162914826 137413668 192916902 146302909 434058637 370665799 433071720 460608259 413021067 44008462 416238964 258228162 317315155 28299542 422136622 102236305 489978791 223662501 132197157 47793593 265792210...

output:

50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
504...

result: