結果
問題 | No.1117 数列分割 |
ユーザー | QDSN |
提出日時 | 2020-07-19 20:40:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 780 bytes |
コンパイル時間 | 1,970 ms |
コンパイル使用メモリ | 171,732 KB |
実行使用メモリ | 27,008 KB |
最終ジャッジ日時 | 2024-05-09 19:16:58 |
合計ジャッジ時間 | 7,957 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 38 ms
8,576 KB |
testcase_04 | AC | 293 ms
7,936 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 632 ms
7,808 KB |
testcase_09 | AC | 44 ms
5,376 KB |
testcase_10 | AC | 858 ms
7,808 KB |
testcase_11 | TLE | - |
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 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include <bits/stdc++.h> #define all(x) (x).begin(), (x).end() typedef long long ll; #define MOD 1000000007 using namespace std; int main() { ll n, k, m; cin >> n >> k >> m; vector<ll> a(n), rui(n + 1, 0); for(int i = 0; i < n; i++) { cin >> a[i]; rui[i + 1] = rui[i] + a[i]; } vector<vector<ll>> dp(n + 1, vector<ll>(k + 1, INT_MIN / 3)); dp[0][0] = 0; for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { for(int l = 0; l < k; l++) { if(i - j >= 0) { dp[i + 1][l + 1] = max(dp[i + 1][l + 1], dp[i - j][l] + abs(rui[i + 1] - rui[i - j])); } } } } cout << dp[n][k] << endl; }