結果

問題 No.2841 Leaf Eater
ユーザー karinohitokarinohito
提出日時 2024-08-10 03:08:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 205,340 KB
実行使用メモリ 15,080 KB
最終ジャッジ日時 2024-08-10 03:08:19
合計ジャッジ時間 5,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 46 ms
6,944 KB
testcase_02 AC 48 ms
6,940 KB
testcase_03 AC 49 ms
6,940 KB
testcase_04 AC 50 ms
6,944 KB
testcase_05 AC 51 ms
6,944 KB
testcase_06 AC 163 ms
6,940 KB
testcase_07 AC 123 ms
6,944 KB
testcase_08 AC 112 ms
6,940 KB
testcase_09 AC 74 ms
15,080 KB
testcase_10 AC 71 ms
14,660 KB
testcase_11 AC 71 ms
14,748 KB
testcase_12 AC 72 ms
14,768 KB
testcase_13 AC 56 ms
6,940 KB
testcase_14 AC 59 ms
6,940 KB
testcase_15 AC 58 ms
6,940 KB
testcase_16 AC 64 ms
6,940 KB
testcase_17 AC 55 ms
6,944 KB
testcase_18 AC 52 ms
6,944 KB
testcase_19 AC 70 ms
6,940 KB
testcase_20 AC 67 ms
6,940 KB
testcase_21 AC 67 ms
6,944 KB
testcase_22 AC 61 ms
6,944 KB
testcase_23 AC 60 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void solve(){
    int N,p,x,cnt;
    cin>>N;
    vector<vector<int>> G(N);
    vector<int> E(N,0);
    for(int i=0;i<N-1;i++){
        cin>>p;
        p--;
        G[i+1].push_back(p);
        E[p]++;
        E[i+1]++;
    }
    bool W=0;
    for(int i=1;i<N;i++)if(E[i]==1){
        x=G[i][0],cnt=1;
        while(E[x]==2&&x){
            cnt++;
            x=G[x][0];
        }
        if(cnt%2)W=1;
    }
    cout<<(W?"First":"Second")<<endl;
}

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