結果

問題 No.1267 Stop and Coin Game
ユーザー publflpublfl
提出日時 2020-10-23 22:59:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 872 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 32,000 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-07-21 12:09:10
合計ジャッジ時間 2,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 77 ms
15,360 KB
testcase_11 AC 27 ms
6,144 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 163 ms
15,488 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 18 ms
8,832 KB
testcase_25 AC 87 ms
9,216 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 23 ms
11,776 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 11 ms
7,168 KB
testcase_34 AC 68 ms
9,088 KB
testcase_35 AC 24 ms
11,392 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 18 ms
5,376 KB
testcase_38 AC 157 ms
15,232 KB
testcase_39 AC 9 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 9 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 18 ms
5,376 KB
testcase_44 AC 297 ms
15,360 KB
testcase_45 WA -
testcase_46 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int a;
long long int b;
long long int x[110];
long long int sum[2000010];
int check[2000010];
int func(int bit)
{
	if(bit+1==(1<<a))
	{
		if(sum[bit]<b) return 2;
		else return 3;
	}
	if(check[bit]) return check[bit];
	//1win 2draw 3lose
	int count[5]={};
	for(int i=1;i<=a;i++)
	{
		if((bit&(1<<(i-1)))==0)
		{
			int newBit = bit+(1<<(i-1));
			if(sum[newBit]<=b) count[func(newBit)]++;
		}
	}
	if(count[3]>0) return check[bit] = 1;
	else if(count[2]>0) return check[bit] = 2;
	return check[bit] = 3;
	
}
long long int C = 0;
void init(int k, int S)
{
	if(k>a)
	{
		sum[S] = C;
		return;
	}
	init(k+1,S);
	C += x[k];
	init(k+1,S+(1<<(k-1)));
	C -= x[k];
}
int main()
{
	scanf("%d%lld",&a,&b);
	for(int i=1;i<=a;i++) scanf("%lld",&x[i]);
	init(1,0);
	int k = func(0);
	if(k==1) printf("First");
	else if(k==2) printf("Draw");
	else printf("Second");
}
0