Submission #967487

# Submission time Handle Problem Language Result Execution time Memory
967487 2024-04-22T08:32:04 Z Halym2007 Split the sequence (APIO14_sequence) C++17
22 / 100
2000 ms 8040 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define sz size()
const int N = 1e5 + 5;
ll a[N], dp[N][205], par[N][205];
int n, k;
ll sum (int x, int y) {
	ll ret = 0;
	for (int i = x; i <= y; ++i) {
		ret += a[i];
	}
	return ret;
} 


int main () {
//	freopen ("sequence.in", "r", stdin);
//	freopen ("sequence.out", "w", stdout);
//	freopen ("input.txt", "r", stdin);
	cin >> n >> k;
	for (int i = 1; i <= n; ++i) {
		cin >> a[i];
	}
	reverse (a + 1,a + n + 1);
	// dp[i][j] i-cenli j grupba bolemde maximum value.
	
	for (int i = 2; i <= n; ++i) {
		for (int x = 2; x <= min (i, k + 1); ++x) {
			for (int j = x - 1; j < i; ++j) {
//				dp[i][x] = max (dp[i][x], dp[j][x - 1] + sum (j + 1, i) * sum (1, j));
				ll val = dp[j][x - 1] + sum (j + 1, i) * sum (1, j);
				if (dp[i][x] < val) {
					par[i][x] = j;
					dp[i][x] = val;
				} 
			}
		}
	}
//	cout << dp[n][k + 1];
//	return 0;
	vector <int> cyk;
	int y = k + 1, x = n;
	while (1) {
		x = par[x][y];
		if (!x) break;
		cyk.pb (x);
		y--;
	}
	cout << dp[n][k + 1] << "\n";
	assert ((int)cyk.sz == k);
	for (int i : cyk) {
//		cout << n - i - 1<< " ";
		cout << n - i << " ";
//		cout << i << "\n";
	}
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB contestant found the optimal answer: 108 == 108
2 Correct 0 ms 348 KB contestant found the optimal answer: 999 == 999
3 Runtime error 7 ms 604 KB Execution killed with signal 6
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 604 KB contestant found the optimal answer: 1093956 == 1093956
2 Correct 0 ms 604 KB contestant found the optimal answer: 302460000 == 302460000
3 Correct 1 ms 604 KB contestant found the optimal answer: 122453454361 == 122453454361
4 Correct 1 ms 604 KB contestant found the optimal answer: 93663683509 == 93663683509
5 Correct 1 ms 600 KB contestant found the optimal answer: 1005304678 == 1005304678
6 Correct 1 ms 604 KB contestant found the optimal answer: 933702 == 933702
7 Correct 1 ms 356 KB contestant found the optimal answer: 25082842857 == 25082842857
8 Correct 1 ms 604 KB contestant found the optimal answer: 687136 == 687136
9 Correct 1 ms 604 KB contestant found the optimal answer: 27295930079 == 27295930079
10 Correct 1 ms 604 KB contestant found the optimal answer: 29000419931 == 29000419931
# Verdict Execution time Memory Grader output
1 Correct 4 ms 2908 KB contestant found the optimal answer: 610590000 == 610590000
2 Correct 5 ms 2908 KB contestant found the optimal answer: 311760000 == 311760000
3 Correct 92 ms 2900 KB contestant found the optimal answer: 1989216017013 == 1989216017013
4 Correct 5 ms 2908 KB contestant found the optimal answer: 1499437552673 == 1499437552673
5 Correct 93 ms 2876 KB contestant found the optimal answer: 1019625819 == 1019625819
6 Correct 115 ms 3152 KB contestant found the optimal answer: 107630884 == 107630884
7 Correct 90 ms 2916 KB contestant found the optimal answer: 475357671774 == 475357671774
8 Correct 48 ms 2904 KB contestant found the optimal answer: 193556962 == 193556962
9 Correct 33 ms 2904 KB contestant found the optimal answer: 482389919803 == 482389919803
10 Correct 57 ms 2960 KB contestant found the optimal answer: 490686959791 == 490686959791
# Verdict Execution time Memory Grader output
1 Correct 437 ms 4180 KB contestant found the optimal answer: 21503404 == 21503404
2 Correct 423 ms 4252 KB contestant found the optimal answer: 140412195 == 140412195
3 Execution timed out 2043 ms 3784 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2019 ms 7848 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2059 ms 8040 KB Time limit exceeded
2 Halted 0 ms 0 KB -