結果
問題 | No.10 +か×か |
ユーザー | pekempey |
提出日時 | 2015-08-21 16:37:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,106 bytes |
コンパイル時間 | 1,932 ms |
コンパイル使用メモリ | 164,844 KB |
実行使用メモリ | 46,936 KB |
最終ジャッジ日時 | 2024-07-18 11:18:48 |
合計ジャッジ時間 | 2,375 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
46,720 KB |
testcase_01 | AC | 12 ms
46,904 KB |
testcase_02 | AC | 13 ms
46,848 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 14 ms
46,720 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) rep2 (i, 0, a) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) repr2 (i, 0, a) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define asn(a, b, c) fill_n(&(b), sizeof(a) / sizeof(b), c) using namespace std; typedef long long ll; const ll inf = 1e18; const ll mod = 1e9 + 7; template<typename T> inline bool umin(T &a, T b) { return b < a && (a = b, true); } ll dp[55][101010]; int main() { const ll inf = 1ll << 60; asn(dp, **dp, inf); int N; int total; cin >> N >> total; vector<ll> A(N); rep (i, N) cin >> A[i]; dp[0][A[0]] = 0; A.erase(A.begin()); N--; rep (i, N) { rep (j, total + 1) { if (dp[i][j] == inf) continue; if (j + A[i] <= total) { umin(dp[i + 1][j + A[i]], dp[i][j] << 1 | 0); } if (j * A[i] <= total) { umin(dp[i + 1][j * A[i]], dp[i][j] << 1 | 1); } } } vector<int> ans; ll x = dp[N][total]; rep (i, N) { ans.push_back(x & 1); x >>= 1; } rep (i, N) { if (ans[i] & 1) { cout << "*"; } else { cout << "+"; } } cout << endl; return 0; }