結果

問題 No.2841 Leaf Eater
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-08-11 14:55:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 1,506 ms
コンパイル使用メモリ 169,088 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-08-11 14:55:14
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,192 KB
testcase_01 AC 22 ms
8,192 KB
testcase_02 AC 23 ms
8,320 KB
testcase_03 AC 23 ms
8,308 KB
testcase_04 AC 24 ms
8,320 KB
testcase_05 AC 25 ms
8,244 KB
testcase_06 AC 29 ms
8,312 KB
testcase_07 AC 24 ms
8,324 KB
testcase_08 AC 28 ms
9,216 KB
testcase_09 AC 43 ms
20,480 KB
testcase_10 AC 41 ms
12,160 KB
testcase_11 AC 42 ms
12,244 KB
testcase_12 AC 43 ms
11,416 KB
testcase_13 AC 29 ms
8,960 KB
testcase_14 AC 35 ms
8,960 KB
testcase_15 AC 24 ms
8,832 KB
testcase_16 AC 32 ms
9,984 KB
testcase_17 AC 26 ms
9,856 KB
testcase_18 AC 24 ms
8,856 KB
testcase_19 AC 21 ms
8,192 KB
testcase_20 AC 21 ms
8,192 KB
testcase_21 AC 22 ms
8,152 KB
testcase_22 AC 21 ms
8,320 KB
testcase_23 AC 22 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

const int N = 2e5 + 7;

int n, ret;
std::vector<int> tr[N];

void dfs(int x, int y) {
  if(!tr[x].size())
    ret |= y;
  if(tr[x].size() >= 2)
    y = 0;
  for(int v: tr[x])
    dfs(v, y + 1);
}

void solve() {
  scanf("%d", &n);
  for(int i = 1; i <= n; ++i)
    tr[i].clear();
  for(int i = 2, x; i <= n; ++i) {
    scanf("%d", &x);
    tr[x].push_back(i);
  }
  ret = 0;
  dfs(1, 0);
  puts(ret & 1 ? "First" : "Second");
}

int main() {

  int cases;
  scanf("%d", &cases);

  while(cases--)
    solve();
	
  return 0;
}
0