結果

問題 No.2841 Leaf Eater
ユーザー karinohitokarinohito
提出日時 2024-08-09 23:08:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 204,788 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-08-09 23:08:32
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 156 ms
5,376 KB
testcase_07 AC 117 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 72 ms
15,692 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 70 ms
15,744 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 <bits/stdc++.h>
using namespace std;
using ll = long long;

void solve(){
    ll N;
    cin>>N;
    vector<vector<int>> G(N);
    vector<int> D(N,0);
    vector<int> E(N,0);
    for(int i=0;i<N-1;i++){
        int p;
        cin>>p;
        p--;
        G[i+1].push_back(p);
        D[i+1]=D[p]+1;
        E[p]++;
        E[i+1]++;
    }
    for(int i=1;i<N;i++){
        if(D[i]%2==1&&E[i]!=2){
            cout<<"First"<<endl;
            return;
        }
    }
    cout<<"Second"<<endl;
}

int main() {
    ll T;
    cin>>T;
    while(T--)solve();
}
0