Submission #500634

#TimeUsernameProblemLanguageResultExecution timeMemory
500634rainboyTortoise (CEOI21_tortoise)C11
18 / 100
21 ms972 KiB
#include <stdio.h>
#include <string.h>

#define N	300
#define INF	0x3f3f3f3f

int abs_(int a) { return a > 0 ? a : -a; }
int min(int a, int b) { return a < b ? a : b; }
int max(int a, int b) { return a > b ? a : b; }

int main() {
	static int aa[N], dp[N][N + 1];
	static int tt[N][N];
	int n, i, j, k;
	long long ans;

	scanf("%d", &n);
	for (i = 0; i < n; i++)
		scanf("%d", &aa[i]);
	for (i = 0; i < n; i++)
		for (j = i + 1; j < n; j++)
			if (aa[i] != -1 && aa[j] != -1) {
				tt[i][j] = INF;
				for (k = 0; k < n; k++)
					if (aa[k] == -1)
						tt[i][j] = min(tt[i][j], abs_(i - k) + abs_(k - j));
			}
	for (i = 0; i < n; i++)
		memset(dp[i], 0x3f, n * 2 * sizeof *dp[i]);
	ans = 0;
	for (i = 0; i < n; i++)
		if (aa[i] == 1) {
			dp[i][1] = i;
			for (k = 0; k <= n; k++) {
				int t = dp[i][k];

				if (t > i * 2)
					continue;
				ans = max(ans, k);
				for (j = i + 1; j < n; j++)
					if (aa[j] == 1)
						dp[j][k + 1] = min(dp[j][k + 1], t + tt[i][j]);
			}
		}
	ans = -ans;
	for (i = 0; i < n; i++)
		if (aa[i] > 0)
			ans += aa[i];
	printf("%lld\n", ans);
	return 0;
}

Compilation message (stderr)

tortoise.c: In function 'main':
tortoise.c:17:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |  scanf("%d", &n);
      |  ^~~~~~~~~~~~~~~
tortoise.c:19:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   19 |   scanf("%d", &aa[i]);
      |   ^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...