結果
| 問題 |
No.1701 half price
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-08 21:54:57 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 399 bytes |
| コンパイル時間 | 588 ms |
| コンパイル使用メモリ | 65,288 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-23 04:01:02 |
| 合計ジャッジ時間 | 1,760 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 WA * 4 |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
4 | main()
| ^~~~
ソースコード
#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;
}