結果

問題 No.2841 Leaf Eater
ユーザー ygussanyygussany
提出日時 2024-08-03 18:26:31
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-03 18:26:36
合計ジャッジ時間 3,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 21 ms
6,944 KB
testcase_07 AC 20 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 25 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 25 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int solve(int N, int par[])
{
	int u, w;
	static int depth[200001], deg[200001];
	for (u = 2, depth[1] = 0, deg[1] = 0; u <= N; u++) {
		depth[u] = depth[par[u]] + 1;
		deg[u] = 0;
		deg[par[u]]++;
	}
	for (u = 2; u <= N; u++) if (depth[u] % 2 != 0 && deg[u] != 1) return 1;
	return 0;
}

int main()
{
	int T, i, N, p[200001];
	scanf("%d", &T);
	while (T--) {
		scanf("%d", &N);
		for (i = 2; i <= N; i++) scanf("%d", &(p[i]));
		if (solve(N, p) != 0) printf("First\n");
		else printf("Second\n");
	}
	fflush(stdout);
	return 0;
}
0