QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#735148 | #8038. Hammer to Fall | water_tomato | TL | 654ms | 92592kb | C++14 | 2.7kb | 2024-11-11 17:46:12 | 2024-11-11 17:46:12 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define pi pair<int,int>
using namespace std;
const int N=5e5+5;
struct node{
int to,nxt,w;
}e[N];
int head[N],cnt;
void add(int u,int v,int w){
e[++cnt]={v,head[u],w};
head[u]=cnt;
}
int n,q,m;
int a[N],b[N],val[N];
set<pi> s[N];
int du[N];
int LIM=317;
bool heavy[N];
vector<pi> l_edge[N],path,EDGE[N];
vector<int> heavy_nodes;
const int mod=998244353;
map<pi,int> dis;
void Nth_element(int u,int l,int r,int k){
if(l==r) return;
int rd=l+rand()%(r-l);
swap(EDGE[u][rd],EDGE[u][l]);
int key=val[EDGE[u][l].second]+EDGE[u][l].first;
pi ori=EDGE[u][l];
int i=l,j=r;
while(i<j){
while(i<j && val[EDGE[u][j].second]+EDGE[u][j].first >=key) j--;
EDGE[u][i]=EDGE[u][j];
while(i<j && val[EDGE[u][i].second]+EDGE[u][i].first <key) i++;
EDGE[u][j]=EDGE[u][i];
}
EDGE[u][i]=ori;
if(i==k-1) return;
else if(i>k-1) Nth_element(u,l,i-1,k);
else Nth_element(u,i+1,r,k);
}
void update_heavy(){
for(auto u:heavy_nodes){
Nth_element(u,0,EDGE[u].size()-1,LIM+1);
}
}
signed main(){
scanf("%lld%lld%lld",&n,&m,&q);
for(int i=1;i<=n;i++) scanf("%lld",&a[i]);
for(int i=1,u,v,w;i<=m;i++){
scanf("%lld%lld%lld",&u,&v,&w);
du[u]++;du[v]++;
add(u,v,w);add(v,u,w);
EDGE[u].push_back({w,v});EDGE[v].push_back({w,u});
dis[{u,v}]=dis[{v,u}]=w;
}
for(int i=1;i<=n;i++){
if(du[i]>=LIM){
heavy[i]=1;
heavy_nodes.push_back(i);
// printf("!%d\n",i);
}
}
for(int i=1;i<=q;i++) scanf("%lld",&b[i]);
update_heavy();
for(int j=q;j>=1;j--){
int u=b[j];
if(j%LIM==0) update_heavy();
int minv=-1,minn=1e18;
if(heavy[u]){
for(int i=0;i<=min(LIM,(int)EDGE[u].size()-1);i++){
pi x=EDGE[u][i];
if(x.first+val[x.second]<minn){
minn=x.first+val[x.second];
minv=x.second;
}
}
path.push_back({u,minv});
}
else{
for(int i=head[u];i;i=e[i].nxt){
int v=e[i].to;
if(e[i].w+val[v]<minn){
minn=e[i].w+val[v];
minv=v;
}
}
path.push_back({u,minv});
}
val[u]=minn;
}
long long ans=0;
for(int i=path.size()-1;i>=0;i--){
int u=path[i].first,v=path[i].second;
ans=(ans+a[u]*dis[{u,v}])%mod;
a[v]=(a[v]+a[u])%mod;a[u]=0;
// printf("! %d %d\n",path[i].first,path[i].second);
}
printf("%lld\n",ans);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 12ms
memory: 63168kb
input:
3 2 2 1 1 1 2 3 10 1 2 1 3 2
output:
12
result:
ok single line: '12'
Test #2:
score: 0
Accepted
time: 3ms
memory: 61756kb
input:
2 1 10 5000 5000 1 2 10000 1 2 2 1 2 2 1 1 1 2
output:
550000000
result:
ok single line: '550000000'
Test #3:
score: 0
Accepted
time: 3ms
memory: 62068kb
input:
10 10 10 5 14 99 14 18 4 58 39 48 60 2 4 4 6 9 56 10 8 34 7 5 96 1 3 26 3 7 92 6 8 4 5 1 72 7 6 39 7 2 93 8 8 9 10 2 2 5 9 2 3
output:
8810
result:
ok single line: '8810'
Test #4:
score: 0
Accepted
time: 4ms
memory: 61756kb
input:
100 500 10000 89 61 65 85 89 2 32 97 13 70 29 86 68 74 84 64 54 39 26 84 56 95 73 11 70 26 60 40 84 58 68 33 65 71 55 2 11 71 49 85 14 59 38 11 60 8 81 78 27 32 52 49 35 94 62 72 64 50 12 45 77 74 92 67 92 38 81 39 12 29 60 70 53 33 25 60 7 83 4 85 47 32 13 58 85 86 44 68 44 1 81 62 97 7 66 62 5 16 ...
output:
609241
result:
ok single line: '609241'
Test #5:
score: 0
Accepted
time: 159ms
memory: 86200kb
input:
100000 100000 100000 134299012 740620432 241626312 533601686 901212368 274154852 46613593 72208460 685661661 930069933 934386896 140544225 900179749 8735320 54649110 922673925 450551589 517879800 773426781 410723403 783459037 344315202 75310230 122339501 113898579 646500753 18238713 119326471 969272...
output:
641103242
result:
ok single line: '641103242'
Test #6:
score: 0
Accepted
time: 348ms
memory: 84008kb
input:
448 100000 100000 411038009 847809848 901622409 143987890 230747977 330204397 58948994 635255827 124637955 446506876 693363517 282765360 687916399 598850473 404480258 958197468 332242997 7338874 321860348 37384562 440321061 434694843 935461053 803393359 852456369 428568442 233194935 663299156 907095...
output:
571525504
result:
ok single line: '571525504'
Test #7:
score: 0
Accepted
time: 654ms
memory: 84564kb
input:
800 100000 100000 251326676 820687742 668136087 685815400 271616099 930730049 622254842 263896849 496882119 842365233 827598659 952040530 71490970 870970052 583387021 380241141 573355930 302234935 73043289 694595013 308355368 412222215 132076042 970688532 157167052 932138361 941436777 33081400 29786...
output:
127243876
result:
ok single line: '127243876'
Test #8:
score: 0
Accepted
time: 318ms
memory: 85124kb
input:
2500 100000 100000 906300804 27973131 291731361 13136711 330409907 278210346 97382525 517930303 140685227 76822227 543248915 363117785 379028542 906572814 130403111 29847389 693506370 592704644 989452223 269178614 114603023 108858627 613364646 303414069 537766403 972627965 512287469 938256271 272592...
output:
922000064
result:
ok single line: '922000064'
Test #9:
score: 0
Accepted
time: 187ms
memory: 88056kb
input:
10000 100000 100000 168611457 237345210 879803481 965771982 336411698 283779723 795910140 511076651 625031271 962687567 982088706 658338866 214250373 76724769 976426858 178997802 124508865 478813203 990810948 918523277 15520937 320075177 818778935 449094027 979791260 335062620 345893885 601632901 55...
output:
984915144
result:
ok single line: '984915144'
Test #10:
score: 0
Accepted
time: 55ms
memory: 65964kb
input:
100 4950 100000 390 243 931 295 750 711 295 425 192 904 175 450 715 602 708 456 905 791 996 606 401 330 168 218 55 635 989 349 571 502 243 6 566 435 913 759 432 375 535 382 973 234 978 861 931 224 131 435 853 184 649 897 259 200 218 406 48 710 38 132 579 896 388 800 926 558 59 365 682 475 867 898 51...
output:
49445093
result:
ok single line: '49445093'
Test #11:
score: 0
Accepted
time: 3ms
memory: 62180kb
input:
10 5 1000 15 4 4 5 16 2 11 11 2 10 1 3 10 6 4 18 8 9 18 7 2 18 10 5 20 1 4 2 3 7 7 7 8 9 10 8 1 7 2 6 7 3 6 7 8 3 10 10 2 6 6 1 9 9 3 8 1 8 6 5 8 7 3 3 4 7 6 7 1 8 5 2 3 5 5 7 4 6 3 2 5 9 4 5 1 2 9 4 5 5 2 6 4 5 3 5 4 10 1 10 3 1 1 8 5 2 4 2 5 6 7 6 4 1 9 9 2 4 3 4 10 6 3 4 1 1 3 2 2 8 6 2 8 1 10 6 ...
output:
131690
result:
ok single line: '131690'
Test #12:
score: 0
Accepted
time: 0ms
memory: 62516kb
input:
7 14 10 291114498 673454859 532789761 628672010 833068294 412154083 525136251 3 5 92 4 1 57 7 3 90 2 3 96 6 7 81 6 3 100 6 1 71 2 4 76 2 1 97 6 4 73 2 7 97 6 5 87 2 5 100 6 2 5 6 2 2 6 6 2 2 2 2 6
output:
813329136
result:
ok single line: '813329136'
Test #13:
score: 0
Accepted
time: 191ms
memory: 92592kb
input:
40100 100000 100000 449328284 205410501 451233745 662762857 523774778 505289571 175281968 29821532 289051457 816202892 747849082 152467876 27551719 333462510 816680538 34877361 338141803 468189401 791444416 449513175 687791246 759960262 997873759 330313678 319983381 63035341 177327150 337347635 9634...
output:
901232016
result:
ok single line: '901232016'
Test #14:
score: 0
Accepted
time: 182ms
memory: 89264kb
input:
100000 100000 100000 573792977 201480175 45235867 914202012 246841206 701877700 703821119 37152009 575319618 930506992 703290810 881010700 63914136 96962139 933233795 280963567 671736608 908116432 365397906 284762912 171633220 5053568 330355941 56753074 824456884 854049151 181984509 289214427 855131...
output:
301752872
result:
ok single line: '301752872'
Test #15:
score: 0
Accepted
time: 198ms
memory: 84652kb
input:
11000 100000 100000 931900168 882945140 910307957 767815108 893736008 472640378 323257118 532573916 46252670 658707412 661885079 218681792 377604907 557835654 687412683 603599082 965397828 175104803 474273369 895294122 974715313 776504917 482395923 709979556 668182992 956178523 278742143 170793808 6...
output:
450462060
result:
ok single line: '450462060'
Test #16:
score: 0
Accepted
time: 186ms
memory: 86160kb
input:
21000 100000 100000 423267538 371203658 214114102 60328794 842100474 273553151 351444639 123443269 603555206 821378648 917426170 355158052 259201908 873963579 509329177 355474684 104537734 462995696 998746832 478755191 426722246 155307427 243458936 720160611 835264509 245911268 160206703 134083123 9...
output:
537725466
result:
ok single line: '537725466'
Test #17:
score: 0
Accepted
time: 185ms
memory: 86152kb
input:
31000 100000 100000 342252174 878226238 589362395 675155220 522398294 344269130 839340346 507244641 684566644 461671648 482815896 467836007 553844248 162408963 294342066 118276034 293534762 239795082 523928633 198513446 677832645 166890401 881058129 578123735 719662774 678873672 171753747 890830895 ...
output:
485570800
result:
ok single line: '485570800'
Test #18:
score: 0
Accepted
time: 178ms
memory: 86228kb
input:
50000 100000 100000 757088818 73185044 602483416 732346792 997675995 338699262 612527879 725332311 280390519 51769782 671098898 241336332 800948824 412010644 482376542 45192576 404890903 547025877 719095252 576254098 477907469 6774296 245538913 827814853 393359835 596647905 30596726 443093949 422114...
output:
106145504
result:
ok single line: '106145504'
Test #19:
score: 0
Accepted
time: 198ms
memory: 85132kb
input:
50000 100000 100000 419250629 150632961 590763842 31818542 311298205 632739311 759591628 200255897 795498028 418868357 693412755 816679244 514043045 992435505 506090854 937492446 172410129 871311955 563404839 943230235 888709578 99368896 106340939 952044928 268690176 839181120 787037019 141712064 22...
output:
910071343
result:
ok single line: '910071343'
Test #20:
score: 0
Accepted
time: 200ms
memory: 87024kb
input:
40100 100000 100000 30010083 227668969 241095349 830895822 97787900 322581344 496084693 750727326 947604134 782156260 282635671 55195519 867231040 981755524 301932707 714940893 921380188 77329572 86172183 900244915 943760961 998273659 787033345 631259925 162116969 510736278 827863016 184110246 67147...
output:
925392146
result:
ok single line: '925392146'
Test #21:
score: 0
Accepted
time: 182ms
memory: 85628kb
input:
52094 94021 95019 816959499 20123178 406126632 61956254 41417583 577485833 667512043 872266782 365199489 440825887 871669736 743504767 168921593 22436552 671983144 260334270 347307602 804634052 77460664 948542335 721266251 575343289 648919849 579171719 581603175 222021036 315184656 52733760 59438910...
output:
4333605
result:
ok single line: '4333605'
Test #22:
score: 0
Accepted
time: 226ms
memory: 89164kb
input:
16000 100000 100000 675966004 620856303 51951252 330409698 803113424 630293316 675360544 906272711 51557968 212239870 156015027 30612856 914144087 976127505 657829242 120790916 175308859 457241155 896105620 408037770 277581959 659510961 60974231 4372929 625221753 654880074 928380171 895489395 182142...
output:
73682281
result:
ok single line: '73682281'
Test #23:
score: 0
Accepted
time: 191ms
memory: 85620kb
input:
100000 100000 100000 594788838 36909266 886574764 108945456 654938493 456981675 89800636 746149630 917244962 467057036 395081389 673442668 931785689 215541448 686470413 522468455 759892056 715634823 825406300 950725359 726350218 38943813 107393423 122752156 598189069 133388113 449195918 413075991 61...
output:
606130408
result:
ok single line: '606130408'
Test #24:
score: 0
Accepted
time: 208ms
memory: 86680kb
input:
43210 100000 100000 62766712 781369596 185824176 344820051 664282109 531338101 194014059 281357138 56334567 328473016 41866515 282663760 420500569 688616654 282990658 58390628 647590920 968380023 420396137 49506708 889422526 600308645 892127051 706258015 466669783 576844542 768458111 327559476 52969...
output:
794582170
result:
ok single line: '794582170'
Test #25:
score: 0
Accepted
time: 397ms
memory: 89228kb
input:
1000 100000 100000 589023099 448281621 811738376 820544135 612790292 761048948 262607686 249992865 206763874 676400407 496295080 60259623 664350841 963280558 633942848 877493658 379700367 558107308 436946312 414557311 483806078 741498056 602668251 821323742 820592195 134681725 820048377 28884422 281...
output:
843900450
result:
ok single line: '843900450'
Test #26:
score: 0
Accepted
time: 345ms
memory: 84708kb
input:
1200 100000 100000 108416675 242617775 537667315 556448650 432611023 485189068 332784510 944261332 639672204 119299926 957885680 683891478 471150960 971898867 435005252 413131046 754413561 328964299 860172696 40327585 278840327 878081805 522324142 659363172 226005597 207726185 839099244 226028052 98...
output:
279369761
result:
ok single line: '279369761'
Test #27:
score: -100
Time Limit Exceeded
input:
447 99681 100000 253172909 404106891 516704004 395937554 948561151 960714787 801826087 141017390 773008020 907743263 342675415 514922722 125442073 241050921 59554947 28358764 764412384 470960177 22539905 709496973 963412577 583159530 633526152 212320009 424724659 373716554 50376756 664150315 5702244...