結果

問題 No.1701 half price
ユーザー kotatsugamekotatsugame
提出日時 2021-10-08 21:54:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 63,532 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-30 09:55:59
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 15 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 15 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 121 ms
4,376 KB
testcase_07 AC 121 ms
4,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 126 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-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