結果

問題 No.1117 数列分割
ユーザー snrnsidysnrnsidy
提出日時 2021-06-10 03:25:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,217 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 204,584 KB
実行使用メモリ 73,932 KB
最終ジャッジ日時 2024-05-06 20:41:18
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 11 ms
28,428 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 96 ms
48,704 KB
testcase_14 AC 146 ms
63,372 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 62 ms
73,932 KB
testcase_19 AC 63 ms
73,784 KB
testcase_20 WA -
testcase_21 AC 248 ms
73,820 KB
testcase_22 AC 259 ms
73,800 KB
testcase_23 AC 267 ms
73,892 KB
testcase_24 AC 263 ms
73,912 KB
testcase_25 AC 250 ms
73,836 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

long long int dp[2][3001];
long long int psum[3001];
long long int C[3001][3001];
vector <long long int> v;
int N, K, M;

void solve(int t, int l, int r, int s, int e)
{
	if (l > r)
	{
		return;
	}
	int m = (l + r) / 2;
	dp[1][m] = dp[0][s - 1] + C[s][m];
	int opt = s;
	int end = min(e, m);
	for (int k = s + 1; k <= end; k++)
	{
		if (m - k + 1 > M)
		{
			break;
		}
		long long int val = dp[0][k - 1] + C[k][m];
		if (dp[1][m] < val)
		{
			dp[1][m] = val;
			opt = k;
		}
	}
	if (l != r)
	{
		solve(t, l, m - 1, s, opt);
		solve(t, m + 1, r, opt, e);
	}
}
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++)
	{
		psum[i] = v[i - 1];
	}

	for (int i = 1; i <= N; i++)
	{
		psum[i] += psum[i - 1];
	}

	for (int i = 1; i <= N; i++)
	{
		for (int j = 1; j <= N; j++)
		{
			C[i][j] = abs(psum[j] - psum[i - 1]);
		}
	}

	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]));
		solve(i, i, N, i, N);
	}

	cout << dp[1][N] << '\n';

	return 0;
}
0