結果
問題 | No.1701 half price |
ユーザー |
|
提出日時 | 2021-10-08 21:56:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 102 ms / 3,000 ms |
コード長 | 399 bytes |
コンパイル時間 | 693 ms |
コンパイル使用メモリ | 65,276 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 04:05:21 |
合計ジャッジ時間 | 1,866 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
コンパイルメッセージ
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=1;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;}