# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1080965 | horiaboeriu | Mean (info1cup19_mean) | C++17 | 3 ms | 576 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#define MAXN 200
int dp[MAXN][MAXN];//dp[i][j] este media aritmetica maxima care se poate forma pe secventa de la i la j
int calc(int x, int y) {
return (x + y) / 2;
}
int main()
{
int n, i, x, j, k, s;
scanf("%d", &n);
//complexitate O(n^3)
for (i = 0; i < n; i++) {
scanf("%d", &dp[i][i]);
}
for (x = 2; x <= n; x++) {//lungimea secventei
for (i = 0; i <= n - x; i++) {//inceputul secventei
j = i + x - 1;
for (k = i; k < j; k++) {
s = calc(dp[i][k], dp[k + 1][j]);
if (s > dp[i][j]) {
dp[i][j] = s;
}
}
}
}
printf("%d\n", dp[0][n - 1]);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |