結果
問題 | No.10 +か×か |
ユーザー | Yang33 |
提出日時 | 2018-04-07 01:32:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,670 bytes |
コンパイル時間 | 1,906 ms |
コンパイル使用メモリ | 171,476 KB |
実行使用メモリ | 23,168 KB |
最終ジャッジ日時 | 2024-06-26 10:55:33 |
合計ジャッジ時間 | 2,572 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 7 ms
7,168 KB |
testcase_09 | AC | 11 ms
10,496 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using VS = vector<string>; using LL = long long; using VI = vector<int>; using VVI = vector<VI>; using PII = pair<int, int>; using PLL = pair<LL, LL>; using VL = vector<LL>; using VVL = vector<VL>; #define ALL(a) begin((a)),end((a)) #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define EB emplace_back #define MP make_pair #define SZ(a) int((a).size()) #define SORT(c) sort(ALL((c))) #define RSORT(c) sort(RALL((c))) #define UNIQ(c) (c).erase(unique(ALL((c))), end((c))) #define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++) #define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--) #define debug(x) cerr << #x << ": " << x << endl const int INF = 1e9; const LL LINF = 1e16; const LL MOD = 1000000007; const double PI = acos(-1.0); int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 }; /* ----- 2018/04/06 Problem: yukicoder 010 / Link: http://yukicoder.me/problems/no/010 ----- */ /* ------問題------ あなたは、Isaacから借りたノートをコピーしようとしてOCRにかけようとしている。 ある計算式をOCRしようとしたら、演算子を正しく認識されてなく、文字化けしていることに気づいた。 ここに出てくる演算子は+と*のみで、すべて?と表示されてしまっている。 元の数式の正しい数式を求めてください。 複数回答がある場合は、{+,*} の順の辞書列順の最初のものを求めてください。 例えば辞書順は ++ → +* → *+ → ** の順番である。 重要:この問題では優先順位は同じとし、左結合とする。 簡単に言うと左から順に処理するだけである。 例えば1 ? 2 ? 10 ? 1=31の場合 1+2*10+1が答えで 実際の世界では((1+2)*10)+1=31 となるので注意。 -----問題ここまで----- */ /* -----解説等----- ----解説ここまで---- */ LL N; LL ans = 0LL; int main() { cin.tie(0); ios_base::sync_with_stdio(false); cin >> N; LL total; cin >> total; VI a(N); FOR(i, 0, N) { cin >> a[i]; } VVI dp(N, VI(total + 1, INF)); dp[0][a[0]] = 0; FOR(i, 1, N) { FOR(j, 0, total + 1) { if (dp[i-1][j] == INF)continue; if(j+a[i] <=total)dp[i][j+a[i]] = min(dp[i][j+a[i]], dp[i-1][j] * 2); // + if(j*a[i]<=total)dp[i][j*a[i]] = min(dp[i][j*a[i]], dp[i-1][j] * 2 + 1); // * } } // 復元 ans = dp[N-1][total]; // N-1回 FOR(i, 0, N - 1) { if (ans & (1 << (N - i - 2))) { cout << "*"; } else { cout << "+"; } } //cout << ans << "\n"; return 0; }