結果
問題 | No.332 数列をプレゼントに |
ユーザー | asi1024 |
提出日時 | 2016-02-21 22:26:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 1,829 ms |
コンパイル使用メモリ | 164,452 KB |
実行使用メモリ | 19,640 KB |
最終ジャッジ日時 | 2024-09-22 12:36:47 |
合計ジャッジ時間 | 17,058 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
19,308 KB |
testcase_01 | AC | 14 ms
19,400 KB |
testcase_02 | AC | 9 ms
19,424 KB |
testcase_03 | AC | 9 ms
19,328 KB |
testcase_04 | AC | 7 ms
19,424 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
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 | RE | - |
testcase_24 | AC | 217 ms
19,312 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 217 ms
19,408 KB |
testcase_36 | AC | 6 ms
19,448 KB |
testcase_37 | WA | - |
testcase_38 | AC | 213 ms
19,296 KB |
testcase_39 | WA | - |
testcase_40 | AC | 236 ms
19,332 KB |
testcase_41 | AC | 237 ms
19,340 KB |
testcase_42 | AC | 236 ms
19,156 KB |
testcase_43 | AC | 236 ms
19,448 KB |
testcase_44 | WA | - |
testcase_45 | AC | 233 ms
19,472 KB |
testcase_46 | AC | 105 ms
19,432 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i,n) for(int i=0;i<(int)(n);i++) #define ALL(x) (x).begin(),(x).end() using namespace std; typedef long long ll; int dp[4096000]; string solve() { int N; ll X; cin >> N >> X; memset(dp, -1, sizeof(dp)); dp[0] = 0; vector<int> A(N); vector<pair<int,ll>> B; REP(i,N) { cin >> A[i]; if (A[i] < 100000) { for (int j = 2010000; j >= 0; --j) if (dp[j] >= 0) dp[j+A[i]] = i; } else B.emplace_back(i, A[i]); } int M = B.size(); REP(bit,1<<M) { ll sum = 0; REP(i,M) if ((bit >> i) & 1) sum += B[i].second; if (X - sum < 4096000 && dp[X-sum] >= 0) { string res(N, 'x'); REP(i,M) if ((bit >> i) & 1) res[B[i].first] = 'o'; for (int val = X - sum; val > 0; val -= A[dp[val]]) res[dp[val]] = 'o'; return res; } } return "No"; } int main() { cout << solve() << endl; }