結果

問題 No.1267 Stop and Coin Game
ユーザー auauaauaua
提出日時 2020-10-23 22:51:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,325 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 168,968 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-21 11:58:54
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,392 KB
testcase_01 AC 5 ms
11,512 KB
testcase_02 AC 5 ms
11,392 KB
testcase_03 AC 5 ms
11,448 KB
testcase_04 AC 5 ms
11,392 KB
testcase_05 AC 5 ms
11,392 KB
testcase_06 AC 5 ms
11,468 KB
testcase_07 AC 5 ms
11,404 KB
testcase_08 AC 7 ms
11,392 KB
testcase_09 AC 5 ms
11,520 KB
testcase_10 AC 72 ms
11,392 KB
testcase_11 AC 30 ms
11,392 KB
testcase_12 AC 9 ms
11,392 KB
testcase_13 AC 5 ms
11,520 KB
testcase_14 AC 5 ms
11,392 KB
testcase_15 AC 5 ms
11,416 KB
testcase_16 AC 151 ms
11,384 KB
testcase_17 AC 5 ms
11,520 KB
testcase_18 AC 6 ms
11,392 KB
testcase_19 AC 5 ms
11,392 KB
testcase_20 AC 6 ms
11,392 KB
testcase_21 AC 6 ms
11,392 KB
testcase_22 AC 5 ms
11,372 KB
testcase_23 AC 5 ms
11,444 KB
testcase_24 AC 12 ms
11,392 KB
testcase_25 AC 88 ms
11,392 KB
testcase_26 AC 6 ms
11,384 KB
testcase_27 AC 6 ms
11,392 KB
testcase_28 AC 7 ms
11,392 KB
testcase_29 AC 5 ms
11,492 KB
testcase_30 AC 6 ms
11,520 KB
testcase_31 AC 6 ms
11,520 KB
testcase_32 AC 5 ms
11,392 KB
testcase_33 AC 6 ms
11,392 KB
testcase_34 AC 73 ms
11,392 KB
testcase_35 AC 6 ms
11,520 KB
testcase_36 AC 6 ms
11,352 KB
testcase_37 AC 22 ms
11,520 KB
testcase_38 AC 151 ms
11,392 KB
testcase_39 AC 13 ms
11,376 KB
testcase_40 AC 8 ms
11,344 KB
testcase_41 AC 16 ms
11,408 KB
testcase_42 AC 6 ms
11,520 KB
testcase_43 AC 23 ms
11,392 KB
testcase_44 AC 235 ms
11,392 KB
testcase_45 AC 6 ms
11,392 KB
testcase_46 AC 5 ms
11,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
#define vec vector<ll>
#define mat vector<vector<ll> >
#define fi first
#define se second
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
typedef long double ld;
typedef complex<double> comp;
const ll INF=1e9+7;
const ll inf=INF*INF;
const ll MOD=1e9+7;
const ll mod=MOD;
const int MAX=200010;

vector<ll>a(20);
vector<ll>dp(1LL<<20,-1);
ll n;
ll v;
bool solve(ll i){
    if(dp[i]>=0)return dp[i];
    ll sum=0;
    rep(j,n){
        if((1LL<<j)&i){
            sum+=a[j];
        }
    }
    if(sum>v){
        dp[i]=1;
        return 1;
    }
    ll cnt=0;
    rep(j,n){
        if(((1LL<<j)&i)==0){
            cnt+=1-solve(i+(1LL<<j));
        }
    }
    if(cnt){
        dp[i]=1;
        return 1;
    }else{
        dp[i]=0;
        return 0;
    }
}

signed main(){
    cin>>n>>v;
    ll sum=0;
    rep(i,n){
        cin>>a[i];
        sum+=a[i];
    }
    ll ans=solve(0);
    if(sum<=v){
        cout<<"Draw"<<endl;
    }else if(ans){
        cout<<"First"<<endl;
    }else{
        cout<<"Second"<<endl;
    }
}
0