結果

問題 No.898 tri-βutree
ユーザー tailstails
提出日時 2022-10-21 14:47:14
言語 cLay
(20240714-1)
結果
AC  
実行時間 71 ms / 4,000 ms
コード長 223 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 181,052 KB
実行使用メモリ 17,312 KB
最終ジャッジ日時 2024-07-01 00:37:03
合計ジャッジ時間 7,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
14,692 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 71 ms
17,240 KB
testcase_08 AC 58 ms
17,256 KB
testcase_09 AC 58 ms
16,628 KB
testcase_10 AC 57 ms
16,448 KB
testcase_11 AC 56 ms
17,256 KB
testcase_12 AC 57 ms
16,412 KB
testcase_13 AC 56 ms
16,264 KB
testcase_14 AC 58 ms
16,748 KB
testcase_15 AC 59 ms
17,312 KB
testcase_16 AC 56 ms
17,004 KB
testcase_17 AC 56 ms
16,588 KB
testcase_18 AC 57 ms
16,308 KB
testcase_19 AC 57 ms
17,000 KB
testcase_20 AC 56 ms
17,248 KB
testcase_21 AC 57 ms
17,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n;
int u[n],v[],w[];
rd((u,v,w)(n-1));
wgraph<int>g;
g.setEdge(n,n-1,u,v,w);
ll d[n];
g.getDistForest(0,d);
HLD h;
h.init(g.g);
ll@q;
rep(q){
	ll@x,@y,@z;
	wt(d[x]+d[y]+d[z]-d[h.lca(x,y)]-d[h.lca(x,z)]-d[h.lca(y,z)]);
}
0