結果
問題 | No.1117 数列分割 |
ユーザー | snrnsidy |
提出日時 | 2021-06-10 03:33:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 2,043 ms |
コンパイル使用メモリ | 202,924 KB |
実行使用メモリ | 10,140 KB |
最終ジャッジ日時 | 2024-05-06 20:52:36 |
合計ジャッジ時間 | 16,121 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,140 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 163 ms
5,376 KB |
testcase_04 | AC | 162 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 237 ms
5,376 KB |
testcase_09 | AC | 46 ms
5,376 KB |
testcase_10 | AC | 285 ms
5,376 KB |
testcase_11 | AC | 1,565 ms
5,376 KB |
testcase_12 | AC | 1,375 ms
5,376 KB |
testcase_13 | AC | 1,179 ms
5,376 KB |
testcase_14 | AC | 2,399 ms
5,376 KB |
testcase_15 | AC | 1,791 ms
5,376 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long int dp[2][3001]; vector <long long int> v; int N, K, M; int main(void) { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> K >> M; for (int i = 0; i < N; i++) { int t; cin >> t; v.push_back(t); } for (int i = 1; i <= N; i++) { dp[1][i] = -1e18; } dp[1][0] = 0; for (int i = 1; i <= K; i++) { memcpy(dp[0], dp[1], sizeof(dp[1])); fill(dp[1], dp[1] + 3001, -1e18); for (int j = 0; j < N; j++) { if (dp[0][j] <= -1e18) continue; long long int sum = 0; for (int k = j; k < N; k++) { sum += v[k]; dp[1][k + 1] = max(dp[1][k + 1], dp[0][j] + abs(sum)); } } } cout << dp[1][N] << '\n'; return 0; }