結果
問題 | No.10 +か×か |
ユーザー | なお |
提出日時 | 2014-10-05 18:19:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 772 ms / 5,000 ms |
コード長 | 1,137 bytes |
コンパイル時間 | 534 ms |
コンパイル使用メモリ | 57,696 KB |
実行使用メモリ | 468,164 KB |
最終ジャッジ日時 | 2024-05-08 11:40:43 |
合計ジャッジ時間 | 5,025 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 209 ms
319,168 KB |
testcase_01 | AC | 205 ms
319,120 KB |
testcase_02 | AC | 207 ms
319,128 KB |
testcase_03 | AC | 772 ms
468,164 KB |
testcase_04 | AC | 221 ms
323,680 KB |
testcase_05 | AC | 208 ms
319,244 KB |
testcase_06 | AC | 726 ms
466,948 KB |
testcase_07 | AC | 383 ms
367,376 KB |
testcase_08 | AC | 242 ms
326,784 KB |
testcase_09 | AC | 229 ms
324,620 KB |
testcase_10 | AC | 206 ms
319,184 KB |
testcase_11 | AC | 206 ms
318,980 KB |
ソースコード
#include <stdlib.h> #include <iostream> #include <string> using namespace std; #define REP(i, n) for(int(i)=0;(i)<(n);++(i)) bool dp1[101][100010]; string dp2[101][100010]; int main(){ int N, total, A; cin >> N >> total; REP(i,N+1) REP(j,total+1) dp1[i][j] = false; cin >> A; dp1[0][A] = true; REP(i,N-1){ cin >> A; for(int j = 0; j <= total; j++){ if(!dp1[i][j]) continue; int k = j + A; if(k <= total){ string ks = dp2[i][j] + "0"; dp1[i+1][k] = true; if(dp2[i+1][k] == "" || dp2[i+1][k] > ks) dp2[i+1][k] = ks; } int l = j * A; if(l <= total){ string ls = dp2[i][j] + "1"; dp1[i+1][l] = true; if(dp2[i+1][l] == "" || dp2[i+1][l] > ls) dp2[i+1][l] = ls; } } } string res = dp2[N-1][total]; if(res != ""){ REP(i,res.size()){ if(res[i] == '0') res[i] = '+'; if(res[i] == '1') res[i] = '*'; } cout << res << endl; } return 0; }