結果
問題 | No.1308 ジャンプビーコン |
ユーザー | tails |
提出日時 | 2020-12-05 23:00:03 |
言語 | cLay (20240714-1) |
結果 |
AC
|
実行時間 | 103 ms / 4,000 ms |
コード長 | 1,702 bytes |
コンパイル時間 | 2,523 ms |
コンパイル使用メモリ | 176,552 KB |
実行使用メモリ | 50,944 KB |
最終ジャッジ日時 | 2024-07-05 14:48:49 |
合計ジャッジ時間 | 3,886 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 40 ms
24,320 KB |
testcase_30 | AC | 39 ms
23,936 KB |
testcase_31 | AC | 103 ms
50,944 KB |
testcase_32 | AC | 29 ms
24,320 KB |
testcase_33 | AC | 38 ms
23,808 KB |
testcase_34 | AC | 3 ms
5,376 KB |
testcase_35 | AC | 3 ms
5,376 KB |
testcase_36 | AC | 3 ms
5,376 KB |
testcase_37 | AC | 3 ms
5,376 KB |
testcase_38 | AC | 4 ms
5,376 KB |
testcase_39 | AC | 5 ms
5,376 KB |
ソースコード
int u[3d3],v[3d3],l[3d3],x[3d3]; struct Node { int parent; int depth; ll cost; }; Node nodes[3d3]; int visited[3d3]; ll saveds[3d3]; int steps[10000000],fs[10000000]; int stepn; ll totalcost; ll totalsaved; wgraph<int> g; //HLD h; void f1(int i,int p){ rep(k,g.es[i]){ int j=g.edge[i][k]; if(j!=p){ nodes[j].parent=i; nodes[j].depth=nodes[i].depth+1; nodes[j].cost=g.cost[i][k]; f1(j,i); } } } { int @n,@q,@c; rd((u--,v--,l)(n-1)); rd((x--)(q)); g.setEdge(n,n-1,u,v,l); //h.init(g.g); f1(0,-1); { int p=x[0]; steps[stepn++]=p; rep(k,q){ int a=p; int y=x[k]; //wt("hoge"); //wt(a,y,nodes[a].depth,nodes[y].depth); while(nodes[a].depth>nodes[y].depth){ a=nodes[a].parent; } //wt(a,y,nodes[a].depth,nodes[y].depth); while(nodes[a].depth<nodes[y].depth){ y=nodes[y].parent; //wt(":",a,y,nodes[a].depth,nodes[y].depth); } //wt(a,y,nodes[a].depth,nodes[y].depth); while(a!=y){ a=nodes[a].parent; y=nodes[y].parent; } //wt(a,y,nodes[a].depth,nodes[y].depth); y=x[k]; while(p!=a){ p=nodes[p].parent; steps[stepn++]=p; } stepn+=nodes[y].depth-nodes[a].depth; int n=stepn; while(y!=a){ steps[--n]=y; y=nodes[y].parent; } p=x[k]; fs[stepn-1]=1; } } { int p=steps[0]; visited[p]=1; ll saved=0; rep(stepi,1,stepn){ int y=steps[stepi]; int localcost=(nodes[y].parent==p?nodes[y].cost:nodes[p].cost); saved+=localcost; totalcost+=localcost; if(visited[y]){ if(totalsaved<saveds[y]+saved-c){ totalsaved=saveds[y]+saved-c; } } visited[y]=1; if(fs[stepi]){ saved=0; } saveds[y]=totalsaved; p=y; } } wt(totalcost-totalsaved); }