Submission #527877

#TimeUsernameProblemLanguageResultExecution timeMemory
527877rainboy코알라 (JOI13_koala)C11
20 / 100
7 ms560 KiB
#include <stdio.h>

#define N	1000
#define INF	0x3f3f3f3f3f3f3f3fLL

long long max(long long a, long long b) { return a > b ? a : b; }

int main() {
	static int xx[N + 2], bb[N + 2];
	static long long dp[N + 2];
	int n, xl, xr, d, a, i, j;

	scanf("%d%d%d%d%d", &xl, &xr, &d, &a, &n);
	xx[0] = xl;
	for (i = 1; i <= n; i++)
		scanf("%d%d", &xx[i], &bb[i]);
	xx[n + 1] = xr;
	n += 2;
	dp[0] = 0;
	for (j = 1; j < n; j++) {
		dp[j] = -INF;
		for (i = 0; i < j; i++)
			dp[j] = max(dp[j], dp[i] - (long long) (xx[j] - xx[i] + d - 1) / d * a + bb[j]);
	}
	printf("%lld\n", dp[n - 1]);
	return 0;
}

Compilation message (stderr)

koala.c: In function 'main':
koala.c:13:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |  scanf("%d%d%d%d%d", &xl, &xr, &d, &a, &n);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
koala.c:16:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |   scanf("%d%d", &xx[i], &bb[i]);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...