結果

問題 No.1267 Stop and Coin Game
ユーザー 👑 NachiaNachia
提出日時 2020-10-23 23:02:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 166,556 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-07-21 12:12:26
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,648 KB
testcase_01 AC 9 ms
11,520 KB
testcase_02 AC 9 ms
11,520 KB
testcase_03 AC 9 ms
11,648 KB
testcase_04 AC 8 ms
11,520 KB
testcase_05 AC 9 ms
11,648 KB
testcase_06 AC 9 ms
11,648 KB
testcase_07 AC 9 ms
11,648 KB
testcase_08 AC 10 ms
12,032 KB
testcase_09 AC 9 ms
11,648 KB
testcase_10 AC 58 ms
15,744 KB
testcase_11 AC 28 ms
12,672 KB
testcase_12 AC 12 ms
11,776 KB
testcase_13 AC 9 ms
11,520 KB
testcase_14 AC 8 ms
11,648 KB
testcase_15 AC 9 ms
11,776 KB
testcase_16 AC 117 ms
15,744 KB
testcase_17 AC 9 ms
11,520 KB
testcase_18 AC 9 ms
11,520 KB
testcase_19 AC 9 ms
11,520 KB
testcase_20 AC 9 ms
11,648 KB
testcase_21 AC 8 ms
11,648 KB
testcase_22 AC 9 ms
11,520 KB
testcase_23 AC 9 ms
11,648 KB
testcase_24 AC 13 ms
13,696 KB
testcase_25 AC 78 ms
13,696 KB
testcase_26 AC 8 ms
11,648 KB
testcase_27 AC 9 ms
11,776 KB
testcase_28 AC 9 ms
11,648 KB
testcase_29 AC 9 ms
11,648 KB
testcase_30 AC 13 ms
15,616 KB
testcase_31 AC 9 ms
11,520 KB
testcase_32 AC 9 ms
12,032 KB
testcase_33 AC 10 ms
13,696 KB
testcase_34 AC 63 ms
13,696 KB
testcase_35 AC 12 ms
15,744 KB
testcase_36 AC 9 ms
11,648 KB
testcase_37 AC 22 ms
12,160 KB
testcase_38 AC 138 ms
15,744 KB
testcase_39 AC 15 ms
11,904 KB
testcase_40 AC 9 ms
11,648 KB
testcase_41 AC 15 ms
11,904 KB
testcase_42 AC 9 ms
11,648 KB
testcase_43 AC 19 ms
12,032 KB
testcase_44 AC 9 ms
11,648 KB
testcase_45 AC 9 ms
11,520 KB
testcase_46 AC 9 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
LL V;
LL A[20];
LL W[1 << 20];
int memo[1 << 20];
int dp(int X) {
    if (memo[X] != -1) return memo[X];
    memo[X] = 0;
    rep(d, N) {
        if (!((1 << d) & X)) continue;
        int nx = X - (1 << d);
        if (W[nx] < 0) continue;
        if (dp(nx) == 0) memo[X] = 1;
    }
    return memo[X];
}

int main() {
    cin >> N;

    cin >> V;
    rep(i, N) cin >> A[i];
    W[0] = V;
    rep(d, 20) rep(i, 1 << d) {
        W[i + (1 << d)] = W[i];
        W[i] -= A[d];
    }

    if (W[0] >= 0) { cout << "Draw" << endl; return 0; }

    rep(i, 1 << N) memo[i] = -1;
    if (dp((1 << N) - 1)) cout << "First" << endl;
    else cout << "Second" << endl;

    return 0;
}
0