結果

問題 No.715 集合と二人ゲーム
ユーザー はまやんはまやんはまやんはまやん
提出日時 2018-07-15 11:40:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,300 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 174,708 KB
実行使用メモリ 13,700 KB
最終ジャッジ日時 2024-10-15 15:29:18
合計ジャッジ時間 10,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,752 KB
testcase_01 AC 5 ms
5,504 KB
testcase_02 AC 5 ms
5,504 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 13 ms
5,632 KB
testcase_05 AC 18 ms
5,504 KB
testcase_06 AC 21 ms
5,760 KB
testcase_07 AC 29 ms
5,760 KB
testcase_08 AC 37 ms
5,632 KB
testcase_09 AC 44 ms
5,760 KB
testcase_10 AC 48 ms
5,760 KB
testcase_11 AC 62 ms
5,760 KB
testcase_12 AC 80 ms
5,632 KB
testcase_13 AC 90 ms
5,888 KB
testcase_14 AC 99 ms
5,760 KB
testcase_15 AC 124 ms
5,760 KB
testcase_16 AC 125 ms
5,760 KB
testcase_17 AC 110 ms
5,888 KB
testcase_18 AC 156 ms
5,888 KB
testcase_19 AC 182 ms
6,016 KB
testcase_20 AC 164 ms
5,760 KB
testcase_21 AC 204 ms
5,888 KB
testcase_22 AC 240 ms
5,760 KB
testcase_23 AC 258 ms
6,016 KB
testcase_24 AC 288 ms
6,144 KB
testcase_25 AC 276 ms
6,016 KB
testcase_26 AC 274 ms
6,144 KB
testcase_27 AC 323 ms
6,016 KB
testcase_28 AC 393 ms
6,144 KB
testcase_29 AC 407 ms
6,144 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
            ∧_∧  
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     
    /   \     | |     
    /   / ̄ ̄ ̄ ̄/  |  
  __(__ニつ/     _/ .| .|____  
     \/____/ (u ⊃  
---------------------------------------------------------------------------------------------------*/




int N, A[501010];
//---------------------------------------------------------------------------------------------------
int memo[501010];
int g(int x) {
    if (0 <= memo[x]) return memo[x];

    if (x == 0) return memo[x] = 0;
    if (x <= 2) return memo[x] = 1;

    set<int> gr;
    gr.insert(g(x - 2));
    gr.insert(g(x - 3));

    if (5 <= x) {
        rep(i, 1, x) {
            int j = x - i - 3;
            if (1 <= j) gr.insert(g(i) ^ g(j));
        }
    }

    int res = 0;
    while (gr.count(res)) res++;
    return memo[x] = res;
}
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N;
    rep(i, 0, N) cin >> A[i];
    sort(A, A + N);

    rep(i, 0, 501010) memo[i] = -1;
    //rep(i, 0, 1010) printf("%d : %d\n", i, g(i));
    
    int L = 0;
    int gr = 0;
    while (L < N) {
        int i = L + 1;
        while (i < N and A[i] <= A[i - 1] + 1) i++;

        int len = A[i - 1] - A[L] + 1;
        gr ^= g(len);
        L = i;
    }

    if (gr == 0) printf("Second\n");
    else printf("First\n");
    
}
0