結果

問題 No.2841 Leaf Eater
ユーザー RubikunRubikun
提出日時 2024-08-10 00:37:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,176 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 204,196 KB
実行使用メモリ 27,976 KB
最終ジャッジ日時 2024-08-10 00:37:06
合計ジャッジ時間 3,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,592 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 18 ms
11,716 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 72 ms
15,556 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;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

vector<int> G[MAX];
int deg[MAX],dp[MAX];

void DFS(int u){
    if(deg[u]>=2) dp[u]=0;
    for(int to:G[u]){
        dp[to]=dp[u]+1;
        DFS(to);
    }
}

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int Q;cin>>Q;
    while(Q--){
        int N;cin>>N;
        for(int i=0;i<N;i++){
            G[i].clear();
            deg[i]=0;
            dp[i]=-INF;
        }
        for(int i=1;i<N;i++){
            int x;cin>>x;x--;
            deg[x]++;
            G[x].push_back(i);
        }
        DFS(0);
        int ma=0;
        for(int i=0;i<N;i++) if(dp[i]>=0&&dp[i]&1) ma=1;
        if(ma) cout<<"First\n";
        else cout<<"Second\n";
    }
}
0