結果
問題 | No.10 +か×か |
ユーザー | mayoko_ |
提出日時 | 2014-12-11 17:28:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,128 bytes |
コンパイル時間 | 653 ms |
コンパイル使用メモリ | 75,908 KB |
実行使用メモリ | 353,848 KB |
最終ジャッジ日時 | 2024-06-11 20:35:31 |
合計ジャッジ時間 | 3,495 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
203,656 KB |
testcase_01 | AC | 75 ms
203,512 KB |
testcase_02 | AC | 73 ms
203,672 KB |
testcase_03 | AC | 614 ms
353,848 KB |
testcase_04 | WA | - |
testcase_05 | AC | 71 ms
203,616 KB |
testcase_06 | AC | 616 ms
352,752 KB |
testcase_07 | AC | 260 ms
252,456 KB |
testcase_08 | AC | 108 ms
211,816 KB |
testcase_09 | AC | 103 ms
208,388 KB |
testcase_10 | AC | 72 ms
203,648 KB |
testcase_11 | AC | 71 ms
203,572 KB |
ソースコード
#include <sstream> #include <string> #include <vector> #include <map> #include <algorithm> #include <iostream> #include <utility> #include <set> #include <cctype> #include <queue> #include <stack> #include <cstdio> #include <cstdlib> #include <cmath> #define INF 1000000000 using namespace std; typedef long long ll; const int MAXN = 64; string dp[MAXN][100100]; int a[MAXN]; int main(void) { int N, Total; cin >> N; cin >> Total; for (int i = 0; i < N; i++) { cin >> a[i]; } dp[0][a[0]+a[1]] = "+"; dp[0][a[0]*a[1]] = "*"; for (int i = 0; i < N-1; i++) { for (int j = 1; j <= Total; j++) { if (!dp[i][j].empty()) { int tmp = j * a[i+2]; if (tmp <= Total) { dp[i+1][tmp] = max(dp[i+1][tmp], dp[i][j]+"*"); } tmp = j + a[i+2]; if (tmp <= Total) { dp[i+1][tmp] = max(dp[i+1][tmp], dp[i][j]+"+"); } } } } cout << dp[N-2][Total] << endl; return 0; }