結果

問題 No.1267 Stop and Coin Game
ユーザー chocoruskchocorusk
提出日時 2020-10-25 02:16:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,446 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 128,964 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-21 16:54:08
合計ジャッジ時間 3,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
12,656 KB
testcase_01 AC 4 ms
11,580 KB
testcase_02 AC 5 ms
12,656 KB
testcase_03 AC 5 ms
12,620 KB
testcase_04 AC 5 ms
12,620 KB
testcase_05 AC 6 ms
12,696 KB
testcase_06 AC 5 ms
12,652 KB
testcase_07 AC 4 ms
12,624 KB
testcase_08 AC 11 ms
12,640 KB
testcase_09 AC 5 ms
12,624 KB
testcase_10 AC 78 ms
12,628 KB
testcase_11 AC 23 ms
12,516 KB
testcase_12 AC 7 ms
12,620 KB
testcase_13 AC 4 ms
12,620 KB
testcase_14 AC 5 ms
12,732 KB
testcase_15 WA -
testcase_16 AC 88 ms
12,492 KB
testcase_17 AC 4 ms
12,624 KB
testcase_18 AC 4 ms
12,744 KB
testcase_19 AC 4 ms
11,632 KB
testcase_20 AC 4 ms
12,664 KB
testcase_21 AC 5 ms
12,756 KB
testcase_22 AC 4 ms
12,748 KB
testcase_23 AC 4 ms
12,748 KB
testcase_24 AC 37 ms
12,656 KB
testcase_25 WA -
testcase_26 AC 4 ms
11,728 KB
testcase_27 AC 7 ms
12,620 KB
testcase_28 AC 5 ms
12,496 KB
testcase_29 AC 5 ms
12,624 KB
testcase_30 AC 67 ms
12,628 KB
testcase_31 WA -
testcase_32 AC 12 ms
12,624 KB
testcase_33 AC 36 ms
12,712 KB
testcase_34 AC 47 ms
12,636 KB
testcase_35 AC 67 ms
12,744 KB
testcase_36 AC 5 ms
11,736 KB
testcase_37 WA -
testcase_38 AC 90 ms
12,624 KB
testcase_39 AC 9 ms
12,616 KB
testcase_40 AC 5 ms
11,660 KB
testcase_41 AC 10 ms
12,688 KB
testcase_42 AC 4 ms
11,588 KB
testcase_43 AC 16 ms
12,668 KB
testcase_44 AC 66 ms
11,824 KB
testcase_45 AC 4 ms
11,820 KB
testcase_46 AC 4 ms
12,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
using ll=long long;
typedef pair<int, int> P;

int main()
{
    int n; ll v;
    cin>>n>>v;
    ll a[20];
    for(int i=0; i<n; i++){
        cin>>a[i];
    }
    ll s[1<<20]={};
    for(int i=0; i<(1<<n); i++){
        for(int j=0; j<n; j++){
            if(i&(1<<j)) s[i]+=a[j];
        }
    }
    if(s[(1<<n)-1]<=v){
        cout<<"Draw"<<endl;
        return 0;
    }
    bool dp[1<<20]={};
    for(int i=(1<<n)-1; i>=0; i--){
        if(s[i]>v){
            continue;
        }
        bool dame=1;
        for(int j=0; j<n; j++){
            if(i&(1<<j)) continue;
            if(s[i^(1<<j)]<=v){
                dame=0;break;
            }
        }
        if(dame){
            dp[i]=0; continue;
        }
        for(int j=0; j<n; j++){
            if(i&(1<<j)) continue;
            if(!dp[i^(1<<j)]){
                dp[i]=1; break;
            }
        }
    }
    if(dp[0]) cout<<"First"<<endl;
    else cout<<"Second"<<endl;
    return 0;
}
0