結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,800 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
7,516 KB
testcase_03 AC 3 ms
7,776 KB
testcase_04 AC 3 ms
7,776 KB
testcase_05 AC 4 ms
8,608 KB
testcase_06 AC 3 ms
8,036 KB
testcase_07 AC 3 ms
8,288 KB
testcase_08 AC 11 ms
11,492 KB
testcase_09 AC 3 ms
8,288 KB
testcase_10 AC 75 ms
15,656 KB
testcase_11 AC 21 ms
11,508 KB
testcase_12 AC 5 ms
8,160 KB
testcase_13 AC 4 ms
9,184 KB
testcase_14 AC 3 ms
8,160 KB
testcase_15 AC 3 ms
8,676 KB
testcase_16 AC 79 ms
15,612 KB
testcase_17 AC 4 ms
8,544 KB
testcase_18 AC 4 ms
8,192 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 4 ms
8,420 KB
testcase_21 AC 2 ms
7,776 KB
testcase_22 AC 4 ms
7,936 KB
testcase_23 AC 3 ms
9,060 KB
testcase_24 AC 32 ms
13,540 KB
testcase_25 AC 51 ms
13,560 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 6 ms
8,928 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 4 ms
8,688 KB
testcase_30 AC 64 ms
15,832 KB
testcase_31 AC 4 ms
8,604 KB
testcase_32 AC 11 ms
9,056 KB
testcase_33 AC 34 ms
13,756 KB
testcase_34 AC 50 ms
13,568 KB
testcase_35 AC 63 ms
15,720 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 15 ms
11,624 KB
testcase_38 AC 70 ms
15,676 KB
testcase_39 AC 9 ms
11,544 KB
testcase_40 AC 3 ms
6,820 KB
testcase_41 AC 7 ms
8,416 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 11 ms
8,804 KB
testcase_44 AC 61 ms
12,236 KB
testcase_45 AC 2 ms
6,820 KB
testcase_46 AC 4 ms
7,776 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