結果
問題 | No.15 カタログショッピング |
ユーザー | LayCurse |
提出日時 | 2014-11-17 00:32:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 12 ms / 5,000 ms |
コード長 | 1,973 bytes |
コンパイル時間 | 1,578 ms |
コンパイル使用メモリ | 166,568 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 09:14:33 |
合計ジャッジ時間 | 2,244 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 11 ms
6,940 KB |
testcase_06 | AC | 11 ms
6,940 KB |
testcase_07 | AC | 12 ms
6,944 KB |
testcase_08 | AC | 11 ms
6,940 KB |
testcase_09 | AC | 12 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) #define mygc(c) (c)=getchar_unlocked() #define mypc(c) putchar_unlocked(c) void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} void reader(int *x, int *y){reader(x);reader(y);} void writer(int x, char c){int s=0,m=0;char f[10];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);} template<class T1, class T2> void sort(int N, T1 a[], T2 b[], void *mem){int i;pair<T1,T2> *r=(pair<T1, T2>*)mem;rep(i,N)r[i].first=a[i],r[i].second=b[i];sort(r,r+N);rep(i,N)a[i]=r[i].first,b[i]=r[i].second;} int cost[99999]; int mask1[99999], cost1[99999]; int mask2[99999], cost2[99999]; int ress, res[1000]; int arr[33], ars; int main(){ int i, j, k, N, S, P[33]; int n1, n2, x; void *mem = malloc(10000000); reader(&N,&S); rep(i,N) reader(P+i); n1 = N/2; n2 = N - n1; mask1[0] = mask2[0] = cost1[0] = cost2[0] = 0; rep(i,n1) cost[1<<i] = P[i]; REP(i,1,1<<n1) mask1[i] = i, cost1[i] = cost1[i&(i-1)] + cost[i^(i&(i-1))]; rep(i,n2) cost[1<<i] = P[n1+i]; REP(i,1,1<<n2) mask2[i] = i, cost2[i] = cost2[i&(i-1)] + cost[i^(i&(i-1))]; sort(1<<n1, cost1, mask1, mem); sort(1<<n2, cost2, mask2, mem); ress = 0; rep(i,1<<n1){ j = lower_bound(cost2, cost2+(1<<n2), S-cost1[i]) - cost2; while(j < (1<<n2) && cost1[i]+cost2[j]==S){ x = 0; rep(k,n1) if(mask1[i]&1<<k) x |= 1<<(30-k); rep(k,n2) if(mask2[j]&1<<k) x |= 1<<(30-n1-k); res[ress++] = x; j++; } } sort(res, res+ress); reverse(res, res+ress); rep(i,ress){ ars = 0; rep(j,N) if(res[i]&1<<(30-j)) arr[ars++] = j+1; rep(j,ars) writer(arr[j],j==ars-1?'\n':' '); } return 0; }