結果

問題 No.1267 Stop and Coin Game
ユーザー snrnsidysnrnsidy
提出日時 2021-11-12 05:33:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,069 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 200,052 KB
実行使用メモリ 15,684 KB
最終ジャッジ日時 2024-05-03 09:54:20
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,680 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 4 ms
7,552 KB
testcase_03 AC 4 ms
7,552 KB
testcase_04 AC 4 ms
7,552 KB
testcase_05 AC 3 ms
7,808 KB
testcase_06 AC 4 ms
7,424 KB
testcase_07 AC 4 ms
7,424 KB
testcase_08 AC 11 ms
8,448 KB
testcase_09 AC 3 ms
7,424 KB
testcase_10 AC 81 ms
15,616 KB
testcase_11 AC 22 ms
9,472 KB
testcase_12 AC 7 ms
7,680 KB
testcase_13 AC 2 ms
7,552 KB
testcase_14 AC 4 ms
7,424 KB
testcase_15 AC 4 ms
7,552 KB
testcase_16 AC 88 ms
15,636 KB
testcase_17 AC 4 ms
7,424 KB
testcase_18 AC 4 ms
7,552 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 4 ms
7,552 KB
testcase_21 AC 3 ms
7,424 KB
testcase_22 AC 4 ms
7,552 KB
testcase_23 AC 3 ms
7,524 KB
testcase_24 AC 36 ms
11,520 KB
testcase_25 AC 56 ms
11,520 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 5 ms
7,680 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 5 ms
7,680 KB
testcase_30 AC 67 ms
15,616 KB
testcase_31 AC 4 ms
7,552 KB
testcase_32 AC 11 ms
8,704 KB
testcase_33 AC 35 ms
11,520 KB
testcase_34 AC 52 ms
11,520 KB
testcase_35 AC 67 ms
15,684 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 17 ms
8,704 KB
testcase_38 AC 74 ms
15,652 KB
testcase_39 AC 8 ms
7,936 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 8 ms
8,064 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 12 ms
8,576 KB
testcase_44 AC 66 ms
11,776 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long int A[20];
long long int N,V;
int dp[1<<20];
long long int sum[1<<20];

int dfs(int state)
{
    if(sum[state] > V)
    {
        return 1;
    }
    if(dp[state]!=-1)
    {
        return dp[state];
    }

    for(int i=0;i<N;i++)
    {
        if((state&(1<<i))) continue;
        if(!dfs(state | (1<<i)))
        {
            dp[state] = 1;
            return dp[state];
        }
    }

    dp[state] = 0;

    return dp[state];
}

int main(void)
{
    cin.tie(0);
    ios::sync_with_stdio(false);

    cin >> N >> V;

    for(int i=0;i<N;i++)
    {
        cin >> A[i];
    }

    for(int i=0;i<(1<<N);i++)
    {
        for(int j=0;j<N;j++)
        {
            if((i&(1<<j)))
            {
                sum[i] += A[j];
            }
        }
    }

    if(sum[(1<<N)-1] <= V)
    {
        cout << "Draw" << '\n';
        return 0;
    }

    memset(dp,-1,sizeof(dp));

    if(dfs(0))
    {
        cout << "First" << '\n';
    }
    else{
        cout << "Second" << '\n';
    }
    
	return 0;
}
0