結果
問題 | No.332 数列をプレゼントに |
ユーザー | mayoko_ |
提出日時 | 2015-12-25 11:10:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,959 bytes |
コンパイル時間 | 708 ms |
コンパイル使用メモリ | 88,812 KB |
実行使用メモリ | 25,216 KB |
最終ジャッジ日時 | 2024-09-18 23:44:33 |
合計ジャッジ時間 | 4,759 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
24,880 KB |
testcase_01 | AC | 7 ms
24,952 KB |
testcase_02 | AC | 8 ms
25,088 KB |
testcase_03 | AC | 7 ms
24,936 KB |
testcase_04 | AC | 8 ms
24,984 KB |
testcase_05 | AC | 14 ms
25,068 KB |
testcase_06 | WA | - |
testcase_07 | AC | 25 ms
25,080 KB |
testcase_08 | AC | 16 ms
24,880 KB |
testcase_09 | AC | 8 ms
25,076 KB |
testcase_10 | AC | 11 ms
25,036 KB |
testcase_11 | AC | 12 ms
25,072 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 11 ms
24,988 KB |
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 | 15 ms
24,908 KB |
testcase_25 | AC | 14 ms
25,028 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 15 ms
24,864 KB |
testcase_29 | AC | 14 ms
25,060 KB |
testcase_30 | WA | - |
testcase_31 | AC | 14 ms
25,024 KB |
testcase_32 | AC | 14 ms
25,016 KB |
testcase_33 | AC | 12 ms
24,992 KB |
testcase_34 | AC | 23 ms
25,016 KB |
testcase_35 | AC | 75 ms
24,984 KB |
testcase_36 | AC | 8 ms
24,996 KB |
testcase_37 | WA | - |
testcase_38 | AC | 9 ms
25,064 KB |
testcase_39 | WA | - |
testcase_40 | AC | 8 ms
25,076 KB |
testcase_41 | AC | 8 ms
25,068 KB |
testcase_42 | AC | 9 ms
24,860 KB |
testcase_43 | AC | 8 ms
25,044 KB |
testcase_44 | WA | - |
testcase_45 | AC | 32 ms
25,012 KB |
testcase_46 | AC | 8 ms
25,012 KB |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> #include<complex> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; const int MAXN = 111; const int MAX = 50000; pii A[MAXN]; int dp[MAXN*MAX]; bool use[MAXN]; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; ll X; cin >> N >> X; for (int i = 0; i < N; i++) { cin >> A[i].first; A[i].second = i; } sort(A, A+N); int cnt = 0; memset(dp, -1, sizeof(dp)); dp[0] = 0; for (; cnt < N && A[cnt].first < MAX; cnt++) {} for (int i = 0; i < cnt; i++) { for (int j = (i+1)*A[i].first; j >= A[i].first; j--) { if (dp[j-A[i].first] == -1) continue; dp[j] = i; } } int rest = N-cnt; for (int s = 0; s < 1<<rest; s++) { ll sum = 0; for (int i = 0; i < rest; i++) { if ((s>>i)&1) sum += A[cnt+i].first; } ll tar = X-sum; if (0 <= tar && tar < MAXN*MAX && dp[tar] != -1) { for (int i = 0; i < rest; i++) { if ((s>>i)&1) use[A[i+cnt].second] = true; } ll now = tar; while (now != 0) { use[A[dp[now]].second] = true; now -= A[dp[now]].first; } for (int i = 0; i < N; i++) { if (use[i]) cout << "o"; else cout << "x"; } cout << endl; return 0; } } cout << "No" << endl; return 0; }