結果

問題 No.2841 Leaf Eater
ユーザー chineristACchineristAC
提出日時 2024-08-09 22:42:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-08-09 22:42:08
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,192 KB
testcase_01 AC 100 ms
77,140 KB
testcase_02 AC 103 ms
77,056 KB
testcase_03 AC 99 ms
76,876 KB
testcase_04 AC 106 ms
77,524 KB
testcase_05 AC 103 ms
77,396 KB
testcase_06 AC 170 ms
78,396 KB
testcase_07 AC 157 ms
77,952 KB
testcase_08 AC 167 ms
83,584 KB
testcase_09 AC 102 ms
99,072 KB
testcase_10 AC 125 ms
99,496 KB
testcase_11 AC 124 ms
99,584 KB
testcase_12 AC 134 ms
99,208 KB
testcase_13 AC 116 ms
83,012 KB
testcase_14 AC 123 ms
84,992 KB
testcase_15 AC 119 ms
85,336 KB
testcase_16 AC 127 ms
92,416 KB
testcase_17 AC 113 ms
89,472 KB
testcase_18 AC 110 ms
81,976 KB
testcase_19 AC 134 ms
77,824 KB
testcase_20 AC 134 ms
77,740 KB
testcase_21 AC 153 ms
78,464 KB
testcase_22 AC 137 ms
77,884 KB
testcase_23 AC 172 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,time

from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def solve(N,parent):
    child = [[] for v in range(N)]
    for v in range(1,N):
        child[parent[v]].append(v)
    
    dp0 = [""] * N
    dp1 = [""] * N
    for v in range(N)[::-1]:
        if len(child[v]) == 0:
            dp0[v] = "Second"
            dp1[v] = "First"
        elif len(child[v]) == 1:
            c = child[v][0]
            dp0[v] = dp1[c]
            dp1[v] = dp0[c]
        else:
            flg = False
            for c in child[v]:
                if dp1[c] == "First":
                    flg = True
            dp0[v] = "First" if flg else "Second"
            dp1[v] = dp0[v]
    
    return dp0[0]

for _ in range(int(input())):
    N = int(input())
    parent = [-1] + [int(p)-1 for p in input().split()]
    print(solve(N,parent))
0