QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#415819#1217. 归程james1BadCreeper70 1676ms97492kbC++172.6kb2024-05-21 10:40:332024-05-21 10:40:39

Judging History

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

  • [2024-05-21 10:40:39]
  • 评测
  • 测评结果:70
  • 用时:1676ms
  • 内存:97492kb
  • [2024-05-21 10:40:33]
  • 提交

answer

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstring>

using namespace std;

int n, m;
struct edge {
    int u, v, w;
    bool operator < (const edge &a) const {
        return w > a.w;
    }
} e[400005];

struct Dijkstra {
    bool v[200005];
    int d[200005];
    vector<pair<int, int>> G[200005];
    void dijkstra(void) {
        memset(v, 0, sizeof(v)); memset(d, 0x3f, sizeof(d));
        #define pii pair<int, int>
        priority_queue<pii, vector<pii>, greater<pii>> q;
        q.push({d[1] = 0, 1});
        while (!q.empty()) {
            int u = q.top().second; q.pop();
            if (v[u]) continue; v[u] = true;
            for (int i = 0; i < G[u].size(); ++i) {
                int to = G[u][i].first, w = G[u][i].second;
                if (d[to] > d[u] + w) q.push({d[to] = d[u] + w, to});
            }
        }
    }
} Solver;

int bin[400005];
int find(int x) { if (bin[x] == x) return x; return bin[x] = find(bin[x]); }

vector<int> G[400005];
int d[400005], a[400005];
int dep[400005], f[21][400005];
void dfs(int x, int fa) {
    dep[x] = dep[fa] + 1; f[0][x] = fa; d[x] = (x <= n ? Solver.d[x] : 1e9);
    for (int i = 1; i <= 20; ++i) f[i][x] = f[i - 1][f[i - 1][x]];
    for (int y : G[x]) if (y != fa) dfs(y, x), d[x] = min(d[x], d[y]);
}
int query(int x, int y) {
    for (int i = 20; i >= 0; --i) if (a[f[i][x]] > y) x = f[i][x];
    return d[x];
}

void solve(void) {
    scanf("%d%d", &n, &m);
    for (int i = 1; i <= n; ++i) Solver.G[i].clear();
    for (int i = 1; i <= n << 1; ++i) bin[i] = i, a[i] = 0, G[i].clear();
    for (int i = 1; i <= m; ++i) {
        int u, v, l, a; scanf("%d%d%d%d", &u, &v, &l, &a);
        Solver.G[u].emplace_back(make_pair(v, l));
        Solver.G[v].emplace_back(make_pair(u, l));
        e[i].u = u, e[i].v = v, e[i].w = a; 
    } Solver.dijkstra();
    sort(e + 1, e + m + 1); int tot = n;
    for (int i = 1; i <= m; ++i) {
        int u = e[i].u, v = e[i].v, w = e[i].w;
        int x = find(u), y = find(v);
        if (x == y) continue;
        a[++tot] = w; bin[x] = tot; bin[y] = tot; 
        G[x].emplace_back(tot); G[tot].emplace_back(x);
        G[y].emplace_back(tot); G[tot].emplace_back(y);
    }
    dfs(tot, 0);
    int q, k, s, last; scanf("%d%d%d", &q, &k, &s);
    while (q--) {
        int v, p; scanf("%d%d", &v, &p);
        v = (v + k * last - 1) % n + 1; p = (p + k * last) % (s + 1);
        printf("%d\n", last = query(v, p));
    }
}

int main(void) {
    int T; scanf("%d", &T); while (T--) solve();
    return 0;
}

詳細信息

Test #1:

score: 5
Accepted
time: 3ms
memory: 56980kb

input:

3
1 0
0 0 1
1 0
0 0 1
1 0
0 0 1

output:


result:

ok 0 lines

Test #2:

score: 5
Accepted
time: 4ms
memory: 57004kb

input:

3
6 9
1 6 395 1
6 3 13 1
6 4 798 1
6 5 403 1
4 5 2 1
3 1 97 1
5 2 8 1
3 5 187 1
3 2 640 1
10 0 1
4 1
3 1
5 1
3 1
6 0
5 1
3 1
5 1
5 0
3 0
6 7
4 3 4 1
2 5 26 1
6 4 30 1
2 4 1000 1
3 1 445 1
5 6 92 1
1 2 29 1
10 0 1
4 1
5 0
1 0
5 0
3 1
4 1
2 1
4 1
3 1
4 1
6 7
4 2 87 1
2 5 23 1
1 2 16 1
4 3 24 1
6 4 4 1...

output:

286
97
284
97
0
284
97
284
0
0
177
0
0
0
181
177
29
177
181
177
0
103
103
0
127
127
0
0
103
127

result:

ok 30 lines

Test #3:

score: 5
Accepted
time: 0ms
memory: 57344kb

input:

3
50 121
37 15 454 1
23 5 386 1
28 38 894 1
17 31 8 1
38 43 387 1
5 43 308 1
18 39 15 1
34 9 506 1
34 49 15 1
50 3 119 1
13 27 483 1
45 17 835 1
25 2 966 1
24 30 71 1
37 19 28 1
43 7 905 1
10 4 107 1
37 35 416 1
20 13 18 1
47 20 16 1
6 24 116 1
12 47 974 1
48 41 809 1
10 47 17 1
9 42 13 1
16 36 892 ...

output:

1526
1503
1503
1466
1369
1665
1650
1650
0
0
497
0
1402
1671
1401
1379
1451
1646
1650
1671
1646
1365
1646
1215
0
1413
1330
1483
1665
0
1646
0
1402
0
1650
1215
0
1650
1357
1246
1650
1215
1264
1330
1425
1646
1526
1665
1526
1665
0
1482
1646
0
1466
808
1646
0
1375
1646
1521
1291
1665
500
1526
1665
1671
1...

result:

ok 300 lines

Test #4:

score: 5
Accepted
time: 0ms
memory: 55020kb

input:

3
100 259
62 44 8 1
26 69 30 1
37 34 280 1
36 8 80 1
12 47 2 1
78 98 17 1
35 16 914 1
91 75 7 1
80 76 943 1
93 45 3 1
51 100 518 1
26 59 146 1
76 73 231 1
23 73 11 1
64 10 858 1
51 54 7 1
51 86 696 1
59 40 150 1
17 20 64 1
60 43 16 1
78 7 926 1
46 2 440 1
26 82 922 1
32 12 46 1
31 72 756 1
64 70 876...

output:

1007
944
739
905
1286
1018
1001
1260
1262
1035
1262
905
993
1015
1266
1281
779
992
460
1281
739
759
1252
795
0
992
1004
1281
1260
1286
1286
1247
1266
1252
739
1262
0
0
1260
1262
0
836
1001
1053
1012
455
1028
1286
1281
0
1004
1262
1286
992
992
1036
1016
895
930
1007
1286
1281
1286
1063
1252
1004
985
...

result:

ok 600 lines

Test #5:

score: 5
Accepted
time: 12ms
memory: 57324kb

input:

3
1403 4000
659 1257 556 1
428 883 77 1
398 429 623 1
934 998 916 1
408 1318 15 1
595 299 249 1
1243 483 668 1
335 1229 560 1
1357 697 607 1
91 555 4 1
131 508 847 1
591 254 219 1
1004 1319 11 1
209 78 299 1
328 532 21 1
1001 1215 12 1
768 981 762 1
1316 254 126 1
584 1338 583 1
125 869 29 1
745 330...

output:

4637
4318
4318
3466
3860
4318
4171
3728
1452
2474
4098
3412
4033
0
4552
3755
4637
4222
4222
4098
3702
3567
0
3961
0
4249
3738
0
2807
4108
3542
3399
3793
3942
0
3876
2806
0
3779
4108
3414
4108
3627
3648
2792
0
3961
2948
0
4015
4222
4108
1655
0
4108
3953
3658
3890
0
3690
3942
3660
3736
4015
4108
3937
...

result:

ok 6000 lines

Test #6:

score: 5
Accepted
time: 1100ms
memory: 90940kb

input:

3
134023 400000
106936 27428 617 1
31553 30342 971 1
19790 1355 127 1
49584 42179 26 1
28910 65772 18 1
48591 55180 17 1
4998 88813 195 1
82176 121958 759 1
21077 25885 341 1
120910 35270 883 1
27537 33116 20 1
78351 18357 6 1
101608 66216 426 1
30213 43293 998 1
37468 49783 586 1
103877 17557 19 1
...

output:

31014
31770
29737
32596
31117
0
31268
32495
30147
32871
30756
31980
0
31998
32693
26033
32417
9337
31438
32177
32641
31414
31804
33026
32575
27777
0
26698
32652
31867
32450
32271
32652
25847
32652
32302
28402
32177
32302
32197
31661
31799
31713
31814
32107
27295
32565
32250
31712
31125
0
32624
30224...

result:

ok 300000 lines

Test #7:

score: 5
Accepted
time: 3ms
memory: 57232kb

input:

3
1500 1499
1263 1264 197 832549205
1407 1408 695 932716365
1146 1147 40 750669441
1386 1387 484 927439941
1178 1179 83 778216556
241 242 317 128333415
1189 1190 759 779845130
1447 1448 288 967694365
1041 1042 783 693510784
913 914 798 601420727
1359 1360 840 901837603
1225 1226 191 800290452
998 99...

output:

149260
464744
481512
389212
287741
237840
59609
156654
208739
107460
565246
334656
43465
456781
367213
544844
636763
109052
55085
595734
355225
256368
328550
69613
315734
255641
36508
628714
690980
222717
55085
675231
499689
124300
234411
642017
179131
115720
326655
500542
138109
288098
524140
55620...

result:

ok 6000 lines

Test #8:

score: 5
Accepted
time: 7ms
memory: 55464kb

input:

3
1500 1499
214 215 746 103777342
1305 1306 809 863481069
780 781 193 489096281
1380 1381 333 918631020
1299 1300 53 866441833
981 982 823 625528911
606 607 551 354810974
345 346 910 191333196
1475 1476 254 977255759
227 228 736 118721990
1378 1379 137 916242486
55 56 168 28186639
1338 1339 981 8937...

output:

159954
339343
458570
458570
203878
580405
621372
93231
58933
175182
110766
662839
79318
248759
391633
98798
29686
79318
430391
119721
490097
329847
642364
1382
203878
462322
704124
276766
453424
556535
557525
557525
672166
454002
747531
342380
616501
438728
250858
632594
222786
545457
240393
347834
...

result:

ok 6000 lines

Test #9:

score: 5
Accepted
time: 7ms
memory: 57212kb

input:

3
1500 1499
186 187 314 94742289
75 76 261 39423111
1034 1035 125 648876320
1428 1429 832 941472266
1181 1182 504 752620972
342 343 486 178026302
440 441 192 240994251
1431 1432 552 945810062
1229 1230 159 790119569
1194 1195 565 761837664
113 114 256 55257526
636 637 238 352763203
1213 1214 756 781...

output:

569689
312985
696132
60974
688719
393018
501235
488432
614064
271703
137383
250965
154888
211437
738940
518300
108142
57565
443490
192843
526972
85447
404013
345230
485990
665361
401934
391877
702266
638461
87637
493465
152001
6298
716651
102922
171244
398821
332876
377487
139973
349964
583015
58074...

result:

ok 6000 lines

Test #10:

score: 5
Accepted
time: 828ms
memory: 82556kb

input:

3
200000 199999
168039 12763 765 279320236
183939 16430 198 6881839
122193 47956 163 21807713
67770 169599 261 994936289
74818 123071 837 825259015
150448 32275 987 90179474
155426 115119 567 807410643
143919 114116 968 915726797
92951 9762 998 671084406
150297 117878 862 107998837
91701 134269 653 ...

output:

65779635
80678744
63515461
86227552
74769861
52122522
450819
89491882
86315837
5026098
38465492
54922440
81958976
80460791
93084090
4505293
11390406
62027241
43923829
80153947
1425999
41017046
89392328
34047372
39431143
14680982
43791379
60145739
13719811
77415622
85100892
91377866
87387701
24532016...

result:

ok 300000 lines

Test #11:

score: 0
Wrong Answer
time: 855ms
memory: 81884kb

input:

3
200000 199999
176394 15779 785 127180026
118840 52233 628 69674288
1971 33381 302 757977279
72869 125444 355 183017412
104923 147605 520 839789866
124478 39387 865 582607027
155179 30904 563 287043678
62654 32772 741 221773407
175009 23990 438 117663422
177376 176873 136 848504696
57250 16505 54 8...

output:

27744529
39917353
29071196
36806395
15847699
65896432
36486336
64407564
83944503
63639036
7165824
59628107
30503420
24983924
3402780
66833407
19382486
63228074
16546555
35142689
27980056
43506272
24331340
13105983
42739888
8466009
45411076
20074061
21754590
31727072
12567654
13273676
83688056
687730...

result:

wrong answer 1st lines differ - expected: '27739808', found: '27744529'

Test #12:

score: 5
Accepted
time: 1107ms
memory: 97148kb

input:

3
134023 400000
67041 63272 992 180592857
41473 75825 108 301222188
114213 118633 12 580124132
20125 31290 30 519396153
90723 84443 189 316168642
84070 23184 683 111413871
112204 69103 389 388055662
115520 39583 310 273512441
105629 49771 973 81918254
112276 117987 26 749496507
121962 108299 838 256...

output:

0
0
0
0
32038
0
0
28793
33179
32743
0
0
32249
0
0
0
0
11485
23537
29633
0
0
23977
33163
32754
0
32542
32596
33179
9635
0
21084
0
33521
0
0
0
15299
0
16912
33110
33179
0
15557
33214
32824
32779
31244
0
0
32507
33110
0
33110
0
0
32919
33110
0
32830
0
0
0
0
0
0
33179
32463
0
0
0
0
0
0
0
0
33110
0
25266...

result:

ok 300000 lines

Test #13:

score: 5
Accepted
time: 1092ms
memory: 97200kb

input:

3
134023 400000
58760 3502 768 215875099
107385 86405 15 527479997
132742 112734 946 444077360
17162 37315 564 392834909
112439 74725 25 747453202
132349 88516 327 84395270
73108 131771 99 18974938
109915 50777 727 263001501
62336 37521 630 149446391
41770 2858 621 21949981
130072 108091 323 4229302...

output:

0
23801
32156
21200
16692
32317
16404
32031
16386
10568
31863
24877
3114
0
0
32444
0
12954
32551
32436
32317
0
32098
0
0
0
0
32272
0
0
0
0
32018
19115
0
32001
0
31863
0
0
10177
0
0
32551
7618
0
32566
0
0
32101
32264
21200
32264
0
31812
0
31824
19647
32436
32318
0
0
31965
0
0
0
0
27708
27186
0
32219
...

result:

ok 300000 lines

Test #14:

score: 5
Accepted
time: 1118ms
memory: 97212kb

input:

3
134023 400000
15491 25039 962 444781241
43770 90154 968 416678205
19896 66733 917 208667421
15023 2102 692 444508565
74033 113231 3 504471242
94078 25801 8 624427171
102961 120670 491 241484370
78528 3616 27 586135212
107319 5083 876 40723199
28998 77345 384 304581393
116304 47118 591 153577459
81...

output:

11811
0
0
0
0
0
0
0
31726
32654
0
0
32091
0
25154
0
0
32174
32253
27468
32506
0
0
0
23388
0
28400
0
0
32072
0
0
0
31788
20395
0
32174
6679
0
32099
8633
0
32253
29108
0
26922
0
0
31977
32304
15748
0
0
0
17651
0
21759
6341
0
0
30439
0
32282
9284
31696
3882
31834
31919
0
31722
32286
32654
26619
32174
3...

result:

ok 300000 lines

Test #15:

score: 0
Wrong Answer
time: 10ms
memory: 57620kb

input:

3
1403 4000
63 230 9 792459870
250 10 521 435710193
186 75 483 41567023
185 1006 566 219013432
1148 740 142 41210356
486 1050 48 488430239
1218 60 5 939467812
369 1002 373 377523109
877 1206 29 656561482
980 659 81 342719745
544 17 958 234525425
880 1010 85 63567532
579 238 394 313448548
631 102 8 6...

output:

0
3520
3580
0
0
3866
4596
0
0
0
4692
0
4765
0
0
3523
0
0
5002
0
0
0
0
0
0
0
0
0
0
0
4213
0
3146
0
0
5330
0
0
3029
0
4667
0
0
0
3779
5002
4911
0
0
0
4915
5330
3184
3924
4665
0
4911
0
1069
0
4692
5222
3712
4596
0
0
0
5269
4834
0
5002
0
4692
0
5079
0
0
4915
4054
0
4803
0
4213
4911
0
4332
4739
0
4596
0
...

result:

wrong answer 1st lines differ - expected: '4658', found: '0'

Test #16:

score: 0
Wrong Answer
time: 5ms
memory: 55308kb

input:

3
1403 4000
65 36 108 94567299
497 73 930 399127210
814 128 811 105804086
300 479 8 925063872
644 583 749 61035098
769 1221 9 756940473
129 1005 650 421450316
434 116 793 38919578
420 253 20 693812030
313 170 12 810090183
1296 689 837 148940335
32 491 5 909075814
720 1358 30 797814306
661 572 954 35...

output:

1967
0
0
0
2894
0
0
0
5135
0
0
4917
0
4849
0
5229
0
4703
0
4849
5448
0
4703
0
0
0
2884
0
0
0
0
0
0
0
4931
5416
0
0
0
5442
0
4982
5503
5029
0
0
0
0
0
0
0
1967
5510
0
0
0
0
0
4856
5134
5135
3546
4703
0
0
4227
0
3667
5083
0
5154
0
5416
0
5154
0
4931
0
3715
5135
0
2932
0
0
5315
0
0
0
4672
5229
0
0
4014
...

result:

wrong answer 1st lines differ - expected: '5416', found: '1967'

Test #17:

score: 0
Wrong Answer
time: 1112ms
memory: 97208kb

input:

3
134023 400000
124828 37415 961 94076145
12469 128238 20 641194816
130567 15737 167 118907136
131297 6336 25 524919668
116982 130433 24 756819767
33316 74251 964 98831248
67280 6664 493 47288237
119344 53718 25 275115234
123245 128903 701 193512252
67851 82761 537 434699228
105776 133640 27 7409207...

output:

0
30691
29617
2222
32343
0
0
28179
0
0
0
0
6198
32314
32444
29779
0
0
0
0
25794
0
11709
0
32159
32200
32347
0
0
0
10133
23825
32589
27915
0
32200
28733
0
0
0
32776
32589
0
32432
14246
0
0
0
0
32325
29700
0
0
0
0
32347
0
0
32334
32421
0
0
0
27370
0
0
0
0
16208
0
32999
31749
32578
31196
0
32347
11718
...

result:

wrong answer 200001st lines differ - expected: '21956', found: '19171'

Test #18:

score: 0
Wrong Answer
time: 1093ms
memory: 97200kb

input:

3
134023 400000
93897 30157 297 268792428
132559 55246 25 703055243
78340 95366 168 238768162
14465 13469 535 64125745
18273 112312 807 440189389
47009 122943 109 38388604
132558 29279 424 51116970
7442 50269 90 474483522
77415 104844 996 533591796
65098 57707 23 806817064
20920 120036 439 419244143...

output:

0
27460
0
0
0
22533
23617
0
0
32985
0
33117
0
11343
0
33092
7266
0
26670
29528
0
8425
32658
19908
32658
0
0
0
12939
10085
0
19388
32807
0
0
0
0
0
0
0
33232
0
0
33098
0
0
0
0
30860
32892
23536
0
33415
32985
0
31706
26670
32101
0
31715
0
28821
33775
32686
32829
22024
0
10741
0
0
0
33869
32658
33287
0
...

result:

wrong answer 200001st lines differ - expected: '30086', found: '17162'

Test #19:

score: 0
Wrong Answer
time: 1629ms
memory: 97248kb

input:

3
134023 400000
8769 5728 809 19387679
57063 91233 797 253655114
130290 72440 967 32496257
91843 24946 657 501122161
49847 43516 108 85279737
9697 18896 695 273697557
46300 88649 364 14955048
20408 46673 788 79075025
105581 10860 9 806715014
35442 17634 946 64078166
74381 121008 17 680814138
33256 6...

output:

0
32798
32668
32591
0
0
28226
0
0
0
33669
0
0
0
0
0
0
0
20127
33126
14909
33577
33552
0
32990
0
0
0
0
12484
0
12868
28263
0
0
15117
32595
32732
0
0
23781
0
32963
0
32742
7251
0
29789
21158
0
33165
32958
32302
0
17344
0
0
0
8231
0
33816
0
33323
32705
0
0
32731
0
25503
0
32490
20268
0
30236
32731
3242...

result:

wrong answer 400001st lines differ - expected: '0', found: '7192'

Test #20:

score: 5
Accepted
time: 1676ms
memory: 97492kb

input:

3
134023 400000
102887 57011 25 621065092
104930 92183 31 572560306
118658 64299 848 501142203
131931 87158 65 200398712
132887 33804 15 654384648
46738 88508 15 616094154
113013 63932 174 188235708
51888 86629 17 551871892
12748 98037 218 210399397
85016 84392 818 377250424
126145 20672 857 1336467...

output:

0
0
0
0
5175
11407
0
33296
33025
32977
26332
0
33433
0
0
0
32906
0
32894
33433
0
33128
0
32346
0
0
12845
33180
33576
0
32852
0
21913
0
33251
22015
33233
33233
0
32906
32716
8498
0
0
33109
0
0
0
0
15322
32427
32986
9676
0
32592
0
25916
32959
33587
32741
0
25637
0
0
12540
26719
0
33080
31887
0
14952
3...

result:

ok 1200000 lines