結果

問題 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,264 ms
コンパイル使用メモリ 207,060 KB
実行使用メモリ 15,836 KB
最終ジャッジ日時 2024-05-03 09:28:21
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,552 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
7,424 KB
testcase_03 AC 3 ms
7,424 KB
testcase_04 AC 3 ms
7,680 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
7,424 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 16 ms
7,776 KB
testcase_13 AC 4 ms
7,680 KB
testcase_14 AC 4 ms
7,424 KB
testcase_15 AC 4 ms
7,552 KB
testcase_16 AC 471 ms
15,744 KB
testcase_17 WA -
testcase_18 AC 6 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,552 KB
testcase_22 AC 4 ms
7,808 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 6 ms
7,808 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 68 ms
15,616 KB
testcase_31 WA -
testcase_32 AC 12 ms
8,576 KB
testcase_33 AC 36 ms
11,776 KB
testcase_34 WA -
testcase_35 AC 68 ms
15,616 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 WA -
testcase_38 AC 467 ms
15,616 KB
testcase_39 AC 31 ms
8,192 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 37 ms
8,704 KB
testcase_44 AC 66 ms
11,648 KB
testcase_45 AC 2 ms
5,376 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