結果

問題 No.763 Noelちゃんと木遊び
ユーザー %20%20
提出日時 2018-12-11 03:33:40
言語 cLay
(20240714-1)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 176,148 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-07-05 13:13:55
合計ジャッジ時間 2,910 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
18,048 KB
testcase_01 AC 10 ms
10,368 KB
testcase_02 AC 19 ms
13,184 KB
testcase_03 AC 15 ms
11,648 KB
testcase_04 AC 10 ms
10,496 KB
testcase_05 AC 15 ms
11,392 KB
testcase_06 AC 25 ms
14,208 KB
testcase_07 AC 23 ms
14,080 KB
testcase_08 AC 16 ms
11,648 KB
testcase_09 AC 11 ms
10,496 KB
testcase_10 AC 6 ms
8,960 KB
testcase_11 AC 24 ms
14,080 KB
testcase_12 AC 22 ms
13,696 KB
testcase_13 AC 21 ms
13,568 KB
testcase_14 AC 18 ms
12,928 KB
testcase_15 AC 14 ms
11,264 KB
testcase_16 AC 5 ms
8,704 KB
testcase_17 AC 14 ms
11,392 KB
testcase_18 AC 24 ms
14,080 KB
testcase_19 AC 22 ms
13,696 KB
testcase_20 AC 23 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,r,u[2d5];
vector<ll>v[2d5];
ll f(ll j,ll p){
	ll a=1,x;
	rep(i,v[j].size())a&=(x=v[j][i])-p?f(x,j):1;
	r+=a;
	return!a;
}

{
	rd(n,u(n*2-2));
	rep(i,n*2-2)v[u[i]].push_back(u[i^1]);
	f(1,1);
	wt(r);
}
0