結果

問題 No.901 K-ary εxtrεεmε
ユーザー tailstails
提出日時 2022-10-21 15:44:57
言語 cLay
(20240714-1)
結果
AC  
実行時間 55 ms / 3,000 ms
コード長 459 bytes
コンパイル時間 7,402 ms
コンパイル使用メモリ 213,256 KB
実行使用メモリ 19,516 KB
最終ジャッジ日時 2024-07-01 01:22:38
合計ジャッジ時間 11,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
16,924 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 52 ms
17,516 KB
testcase_08 AC 51 ms
16,076 KB
testcase_09 AC 51 ms
16,300 KB
testcase_10 AC 53 ms
17,180 KB
testcase_11 AC 53 ms
16,092 KB
testcase_12 AC 55 ms
16,436 KB
testcase_13 AC 55 ms
17,052 KB
testcase_14 AC 54 ms
16,244 KB
testcase_15 AC 53 ms
17,052 KB
testcase_16 AC 53 ms
16,260 KB
testcase_17 AC 52 ms
16,736 KB
testcase_18 AC 51 ms
17,176 KB
testcase_19 AC 53 ms
17,640 KB
testcase_20 AC 52 ms
17,312 KB
testcase_21 AC 51 ms
17,452 KB
testcase_22 AC 51 ms
16,204 KB
testcase_23 AC 51 ms
17,144 KB
testcase_24 AC 50 ms
17,048 KB
testcase_25 AC 50 ms
19,348 KB
testcase_26 AC 51 ms
19,516 KB
testcase_27 AC 44 ms
17,056 KB
testcase_28 AC 43 ms
17,052 KB
testcase_29 AC 43 ms
16,260 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);
int o[n],p[];
g.g.preorder(p);
rep(i,n)o[p[i]]=i;
ll@q;
rep(q){
	ll@k;
	ull x[k];
	rep(i,k){
		int@xi;
		x[i]=xi|(ull)o[xi]<<32;
	}
	sortA(k,x);
	int a=x[0],b=a;
	ll z=0;
	rep(i,1,k){
		int c=x[i];
		int e=h.lca(a,c);
		if(a==e){
			e=h.lca(b,c);
			z+=d[c]-d[e];
		}else{
			z+=d[a]+d[c]-2d[e];
			a=e;
		}
		b=c;
	}
	wt(z);
}
0