結果
問題 | No.15 カタログショッピング |
ユーザー | shisyamokongari |
提出日時 | 2016-09-29 17:39:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,478 bytes |
コンパイル時間 | 865 ms |
コンパイル使用メモリ | 78,172 KB |
実行使用メモリ | 9,308 KB |
最終ジャッジ日時 | 2024-11-21 10:34:36 |
合計ジャッジ時間 | 1,479 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:112:25: warning: ‘mid’ may be used uninitialized in this function [-Wmaybe-uninitialized] 112 | if(h[mid].P==B) continue; | ^
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cmath> using namespace std; #define NMAX 40 typedef struct s{ long long P; bool ok[NMAX]; } S; int N,B; long long A[NMAX]; vector<S> l,h; bool sel[NMAX]; bool search_end; bool ok[NMAX]; vector<long long> vok; bool operator<(S a,S b){ if(a.P==b.P){ for(int i=0;i<N;i++){ if(a.ok[i]&&!b.ok[i]) return true; if(!a.ok[i]&&b.ok[i]) return false; } return true; } return a.P<b.P; } void ans_out(){ int cnt=0; for(int i=0;i<N;i++) if(sel[i]) cnt++; for(int i=0;i<N;i++){ if(sel[i]){ cout<<A[i]; cnt--; if(cnt) cout<<" "; } } cout<<endl; return; } void search(int m,int sum,int to,int M){ if(to==m){ if(sum==M) search_end=true; return; } sel[m]=true; search(m+1,sum+A[m],to,M); if(search_end) return; sel[m]=false; search(m+1,sum,to,M); return; } void all(int m,int sum,int to,int mode){ /*mode 0-l mode1-h*/ if(m==to){ S tmps; tmps.P=sum; for(int i=0;i<N;i++){ tmps.ok[i]=ok[i]; } if(mode==0) l.push_back(tmps); else h.push_back(tmps); return; } ok[m]=true; all(m+1,sum+A[m],to,mode); ok[m]=false; all(m+1,sum,to,mode); return; } int main(){ cin>>N; cin>>B; for(int i=0;i<N;i++){ cin>>A[i]; sel[i]=false; } for(int i=0;i<N;i++) ok[i]=false; all(0,0,N/2,0); all(N/2,0,N,1); sort(h.begin(),h.end()); sort(l.begin(),l.end()); for(int i=0;i<l.size();i++){ if(l[i].P==B) continue; int lef=0; int rig=h.size()-1; int mid; while(lef<=rig){ mid=(lef+rig) / 2; if(h[mid].P<B-l[i].P){ lef=mid+1; } else if(h[mid].P>B-l[i].P){ rig=mid-1; } else break; } if(h[mid].P==B) continue; if(h[mid].P==B-l[i].P){ while(mid>=1){ if(h[mid].P==h[mid-1].P) mid--; else break; } int f=true; while(mid<h.size()){ if(mid!=0){ if(h[mid].P!=h[mid-1].P&&!f) break; } f=false; long long vv=0; for(int j=0;j<N/2;j++){ vv=vv<<1; if(l[i].ok[j]) vv++; } for(int j=N/2+1;j<N;j++){ vv=vv<<1; if(h[mid].ok[j]) vv++; } vok.push_back(vv); mid++; } } } sort(vok.begin(),vok.end()); for(int i=vok.size()-1;i>=0;i--){ long long waru=1; for(int i=0;i<N;i++) waru*=2; int n=1; while(waru!=0){ if(waru<vok[i]){ cout<<n<<" "; vok[i]-=waru; } waru/=2; n++; } cout<<endl; } return 0; }