結果
問題 | No.332 数列をプレゼントに |
ユーザー | Pachicobue |
提出日時 | 2017-11-07 22:58:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,666 bytes |
コンパイル時間 | 2,142 ms |
コンパイル使用メモリ | 178,128 KB |
実行使用メモリ | 403,200 KB |
最終ジャッジ日時 | 2024-11-24 04:53:34 |
合計ジャッジ時間 | 5,391 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 59 ms
61,696 KB |
testcase_06 | AC | 56 ms
59,392 KB |
testcase_07 | AC | 72 ms
76,032 KB |
testcase_08 | AC | 90 ms
98,816 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 10 ms
11,648 KB |
testcase_11 | AC | 45 ms
46,848 KB |
testcase_12 | AC | 37 ms
37,376 KB |
testcase_13 | AC | 45 ms
46,336 KB |
testcase_14 | AC | 50 ms
49,280 KB |
testcase_15 | AC | 10 ms
11,648 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | AC | 166 ms
181,504 KB |
testcase_19 | WA | - |
testcase_20 | AC | 15 ms
17,408 KB |
testcase_21 | AC | 5 ms
7,296 KB |
testcase_22 | AC | 10 ms
12,800 KB |
testcase_23 | WA | - |
testcase_24 | AC | 44 ms
50,304 KB |
testcase_25 | AC | 44 ms
50,176 KB |
testcase_26 | WA | - |
testcase_27 | AC | 44 ms
50,304 KB |
testcase_28 | AC | 43 ms
50,304 KB |
testcase_29 | AC | 44 ms
50,176 KB |
testcase_30 | WA | - |
testcase_31 | AC | 44 ms
50,176 KB |
testcase_32 | AC | 45 ms
50,176 KB |
testcase_33 | AC | 5 ms
5,248 KB |
testcase_34 | AC | 19 ms
5,376 KB |
testcase_35 | MLE | - |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | AC | 1 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | AC | 1 ms
5,248 KB |
testcase_45 | AC | 80 ms
94,464 KB |
testcase_46 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define show(x) cerr << #x << " = " << x << endl using namespace std; using ll = long long; using pii = pair<int, int>; using vi = vector<int>; template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "sz=" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template <typename S, typename T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } constexpr ll MOD = 1e9 + 7; template <typename T> constexpr T INF = numeric_limits<T>::max() / 100; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; ll X; cin >> X; constexpr ll LEVEL = 100000; using P = pair<ll, int>; vector<P> lower; vector<P> upper; ll lower_sum = 0; for (int i = 0; i < N; i++) { ll v; cin >> v; lower_sum += ((v >= LEVEL) ? 0 : v); ((v >= LEVEL) ? upper : lower).push_back(make_pair(v, i)); } const int upper_size = upper.size(); const int maximum = 1 << upper_size; vector<ll> upper_sum(maximum, 0); for (int i = 0; i < maximum; i++) { for (int j = 0; j < upper_size; j++) { if (i & (1 << j)) { upper_sum[i] += upper[j].first; } } } const int lower_size = lower.size(); vector<vector<int>> dp(lower_size + 1, vector<int>(lower_sum + 1, -2)); dp[0][0] = -1; for (int i = 0; i < lower_size; i++) { for (int j = 0; j <= lower_sum; j++) { if (dp[i][j] != -2) { dp[i + 1][j] = -1; dp[i + 1][j + lower[i].first] = i; } } } for (int i = 0; i < maximum; i++) { if (X < upper_sum[i]) { break; } ll rest = X - upper_sum[i]; if (rest > lower_sum) { continue; } if (dp[lower_size][rest] != -2) { vector<bool> use(N, false); for (int j = 0; j < upper_size; j++) { if (i & (1 << j)) { use[upper[j].second] = true; } } for (int j = lower_size; j >= 1; j--) { if (dp[j][rest] != -1) { use[lower[dp[j][rest]].second] = true; rest -= lower[dp[j][rest]].first; } } for (int j = 0; j < N; j++) { cout << (use[j] ? 'o' : 'x'); } cout << "\n"; return 0; } } cout << "No" << endl; return 0; }