結果
問題 | No.332 数列をプレゼントに |
ユーザー | 🐬hec |
提出日時 | 2015-12-25 02:13:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 920 bytes |
コンパイル時間 | 1,302 ms |
コンパイル使用メモリ | 171,360 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 23:41:56 |
合計ジャッジ時間 | 9,560 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 220 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 209 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 216 ms
6,940 KB |
testcase_25 | AC | 209 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 213 ms
6,944 KB |
testcase_29 | AC | 214 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | AC | 209 ms
6,940 KB |
testcase_32 | AC | 212 ms
6,940 KB |
testcase_33 | AC | 215 ms
6,940 KB |
testcase_34 | AC | 232 ms
6,944 KB |
testcase_35 | AC | 223 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 221 ms
6,940 KB |
testcase_38 | AC | 215 ms
6,940 KB |
testcase_39 | AC | 216 ms
6,940 KB |
testcase_40 | AC | 216 ms
6,940 KB |
testcase_41 | AC | 207 ms
6,944 KB |
testcase_42 | AC | 217 ms
6,940 KB |
testcase_43 | AC | 228 ms
6,944 KB |
testcase_44 | WA | - |
testcase_45 | AC | 239 ms
6,944 KB |
testcase_46 | AC | 229 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;++i) using namespace std; using ll=long long ; int n; ll x,a[110]; map<ll,ll> dp[110]; int main(void){ cin >> n >> x; const int m=min(n,20); const int offset=n-m; rep(i,n) cin >> a[i]; sort(a,a+n); dp[0][0]=-1LL; rep(i,offset){ for(auto &it:dp[i]){ ll cur=it.first; dp[i+1][cur]=cur; dp[i+1][cur+a[i]]=cur; } } rep(mask,1<<m){ ll cur=0LL; string ans=""; rep(i,m){ if(mask&(1<<i)){ cur+=a[i+offset]; ans+="o"; }else{ ans+="x"; } } if(x<cur) continue; cur=x-cur; if(dp[offset].find(cur)!=dp[offset].end()){ reverse(ans.begin(),ans.end()); for(int i=offset;i>0;--i){ if(cur!=dp[i][cur]){ ans+="o"; }else{ ans+="x"; } cur=dp[i][cur]; } assert(cur==0LL); reverse(ans.begin(),ans.end()); cout << ans << endl; return 0; } } puts("No"); return 0; }