結果

問題 No.2841 Leaf Eater
ユーザー RubikunRubikun
提出日時 2024-08-10 00:39:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,383 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 203,024 KB
実行使用メモリ 18,756 KB
最終ジャッジ日時 2024-08-10 00:39:44
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,076 KB
testcase_01 AC 21 ms
10,820 KB
testcase_02 AC 22 ms
11,848 KB
testcase_03 AC 23 ms
11,336 KB
testcase_04 AC 23 ms
11,720 KB
testcase_05 AC 22 ms
11,460 KB
testcase_06 AC 21 ms
11,200 KB
testcase_07 AC 20 ms
12,356 KB
testcase_08 AC 27 ms
12,360 KB
testcase_09 AC 38 ms
18,756 KB
testcase_10 AC 63 ms
16,456 KB
testcase_11 AC 58 ms
16,708 KB
testcase_12 AC 55 ms
15,556 KB
testcase_13 AC 28 ms
12,616 KB
testcase_14 AC 29 ms
11,716 KB
testcase_15 AC 26 ms
12,356 KB
testcase_16 AC 32 ms
13,512 KB
testcase_17 AC 27 ms
13,128 KB
testcase_18 AC 25 ms
12,996 KB
testcase_19 AC 20 ms
11,460 KB
testcase_20 AC 20 ms
12,232 KB
testcase_21 AC 21 ms
11,588 KB
testcase_22 AC 21 ms
11,592 KB
testcase_23 AC 21 ms
12,692 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        }
        bool line=true;
        for(int i=1;i<N;i++){
            int x;cin>>x;x--;
            line&=(x+1==i);
            deg[x]++;
            G[x].push_back(i);
        }
        if(line){
            if(N&1) cout<<"Second\n";
            else cout<<"First\n";
        }else{
            DFS(0);
            int ma=0;
            for(int i=0;i<N;i++) if(dp[i]>=0&&dp[i]&1&&deg[i]==0) ma=1;
            if(ma) cout<<"First\n";
            else cout<<"Second\n";
        }
        
    }
}
0