結果
問題 | No.952 危険な火薬庫 |
ユーザー | Shuz* |
提出日時 | 2019-12-16 20:46:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 775 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 65,152 KB |
実行使用メモリ | 55,040 KB |
最終ジャッジ日時 | 2024-07-02 20:29:43 |
合計ジャッジ時間 | 3,917 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <iostream> using namespace std; using ll = long long; const ll INF = 1e18; int main() { int N; cin >> N; ll S[N + 1], DP[N + 2][N + 1]; S[0] = 0; for (int i = 0; i < N; i++) cin >> S[i + 1], S[i + 1] += S[i]; for (int i = 0; i < N + 2; i++) { for (int j = 0; j < N + 1; j++) DP[i][j] = INF; } DP[0][0] = 0; for (int i = 0; i < N + 1; i++) { for (int j = 0; j < N + 1; j++) { for (int k = 0; k < N + 2; k++) { if (i - k < 0 || j - k < 0) continue; ll cost = S[i] - S[i - k]; DP[i + 1][j] = min(DP[i + 1][j], DP[i - k][j - k] + cost * cost); } } } for (int i = 0; i < N; i++) { cout << DP[N + 1][i + 1] << endl; } }