結果
問題 | No.266 最終進化を目指せ |
ユーザー | kurenai3110 |
提出日時 | 2016-11-29 17:55:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 748 bytes |
コンパイル時間 | 687 ms |
コンパイル使用メモリ | 62,472 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 15:17:47 |
合計ジャッジ時間 | 1,228 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include<iostream> #include <vector> #include <algorithm> using namespace std; int DP[11][11];//evolution,power int main() { int n; cin >> n; vector<int>S(n + 1); for (int i = 0; i < n+1; i++){ cin >> S[i]; } for (int i = 0; i < 11; i++)for (int j = 0; j < 11; j++)DP[i][j] = 1e7; DP[0][0] = 1; for (int i = 0; i < n+1; i++){ for (int j = 0; j <= S[S.size() - 1]; j++){ for (int k = 0; k <= S[S.size() - 1]; k++){ if (DP[i][j] == 1e7 || DP[i][k] == 1e7)continue; if(j+k+1<=S[i])DP[i][j + k + 1] = min(DP[i][j + k + 1], DP[i][j] + DP[i][k]); } } for (int j = 0; j <= S[i]; j++){ DP[i + 1][j] = DP[i][j] + DP[0][0]; } } for (int i = 0; i <= S[S.size() - 1]; i++){ cout << DP[n][i] << endl; } return 0; }