結果

問題 No.715 集合と二人ゲーム
ユーザー ytftytft
提出日時 2021-04-07 00:06:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 814 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 173,624 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-12 00:19:33
合計ジャッジ時間 7,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 16 ms
6,944 KB
testcase_12 AC 17 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 20 ms
6,940 KB
testcase_16 AC 21 ms
6,940 KB
testcase_17 AC 21 ms
6,944 KB
testcase_18 WA -
testcase_19 AC 24 ms
6,940 KB
testcase_20 AC 26 ms
6,944 KB
testcase_21 WA -
testcase_22 AC 28 ms
6,940 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 30 ms
6,940 KB
testcase_26 WA -
testcase_27 AC 34 ms
6,940 KB
testcase_28 WA -
testcase_29 AC 35 ms
6,944 KB
testcase_30 WA -
testcase_31 AC 28 ms
6,944 KB
testcase_32 AC 25 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 4 ms
6,940 KB
testcase_36 AC 4 ms
6,940 KB
testcase_37 AC 4 ms
6,944 KB
testcase_38 AC 5 ms
6,940 KB
testcase_39 AC 4 ms
6,940 KB
testcase_40 WA -
testcase_41 AC 5 ms
6,944 KB
testcase_42 WA -
testcase_43 AC 5 ms
6,940 KB
testcase_44 WA -
testcase_45 AC 5 ms
6,940 KB
testcase_46 AC 5 ms
6,940 KB
testcase_47 AC 5 ms
6,940 KB
testcase_48 WA -
testcase_49 AC 5 ms
6,940 KB
testcase_50 AC 188 ms
7,168 KB
testcase_51 AC 188 ms
7,168 KB
testcase_52 WA -
testcase_53 AC 180 ms
7,168 KB
testcase_54 WA -
testcase_55 AC 184 ms
7,168 KB
testcase_56 AC 175 ms
7,040 KB
testcase_57 WA -
testcase_58 AC 183 ms
7,168 KB
testcase_59 AC 185 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int N;
    cin>>N;
    vector<int> a(N);
    for(int i=0;i<N;i++){
        cin>>a[i];
    }
    sort(a.begin(),a.end());
    vector<int> b;
    int temp=1;
    for(int i=1;i<N;i++){
        if(a[i-1]+1<a[i]){
            b.push_back(temp);
            temp=1;
        }else if(a[i-1]+1==a[i]){
            temp++;
        }
    }
    b.push_back(temp);
    vector<int> grundy(500001,0);
    grundy[1]=1;
    grundy[2]=1;
    for(int i=3;i<500001;i++){
        if(grundy[i-3]+grundy[i-2]==1){
            grundy[i]=2;
        }else if(grundy[i-3]*grundy[i-2]==0){
            grundy[i]=1;
        }else{
            grundy[i]=0;
        }
    }
    int ans=0;
    for(int i:b){
        ans=ans^grundy[i];
    }
    cout<<(ans?"First":"Second")<<endl;
}
0