結果

問題 No.1701 half price
ユーザー kotatsugamekotatsugame
提出日時 2021-10-08 21:54:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 65,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 04:01:02
合計ジャッジ時間 1,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 14 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 113 ms
6,944 KB
testcase_07 AC 114 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 112 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N,W,A[13];
main()
{
	cin>>N>>W;
	for(int i=0;i<N;i++)cin>>A[i];
	int ans=0;
	for(int i=0;i<1<<N;i++)
	{
		bool fn=false;
		for(int j=i;;j=j-1&i)
		{
			long t=0;
			for(int k=0;k<N;k++)if(i>>k&1)
			{
				if(j>>k&1)t+=A[k]/2;
				else t+=A[k];
			}
			if(t==W)
			{
				fn=true;
				break;
			}
			if(j==0)break;
		}
		if(fn)ans++;
	}
	cout<<ans<<endl;
}
0