結果

問題 No.1267 Stop and Coin Game
ユーザー snrnsidysnrnsidy
提出日時 2021-11-12 05:11:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,275 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 207,580 KB
実行使用メモリ 15,792 KB
最終ジャッジ日時 2024-11-24 08:19:11
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,676 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
7,648 KB
testcase_03 AC 3 ms
8,416 KB
testcase_04 AC 3 ms
8,420 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
8,156 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 14 ms
9,052 KB
testcase_13 AC 3 ms
8,164 KB
testcase_14 AC 3 ms
8,672 KB
testcase_15 AC 3 ms
7,908 KB
testcase_16 AC 338 ms
15,792 KB
testcase_17 WA -
testcase_18 AC 4 ms
8,828 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 4 ms
8,036 KB
testcase_21 AC 4 ms
9,052 KB
testcase_22 AC 4 ms
8,704 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 5 ms
9,184 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 WA -
testcase_30 AC 62 ms
15,732 KB
testcase_31 WA -
testcase_32 AC 9 ms
9,180 KB
testcase_33 AC 32 ms
13,700 KB
testcase_34 WA -
testcase_35 AC 60 ms
15,692 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 WA -
testcase_38 AC 335 ms
15,612 KB
testcase_39 AC 24 ms
8,160 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 WA -
testcase_42 AC 1 ms
6,820 KB
testcase_43 AC 29 ms
8,668 KB
testcase_44 AC 61 ms
11,940 KB
testcase_45 AC 2 ms
6,820 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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(dp[state]!=-1)
    {
        return dp[state];
    }
    if(sum[state] > V)
    {
        dp[state] = 0;
        return dp[state];
    }
    set <int> S;
    for(int i=0;i<N;i++)
    {
        if((state&(1<<i))==0)
        {
            S.insert(dfs(state + (1<<i)));
        }
    }

    int g = 0;
    while(1)
    {
        if(S.find(g)==S.end())
        {
            break;
        }
        g++;
    }

    dp[state] = g;
    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));

    dfs(0);

    int XOR = 0;

    for(int i=0;i<N;i++)
    {
        XOR^=dp[(1<<i)];
    }

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