# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
98180 | onjo0127 | Candies (JOI18_candies) | C++11 | 53 ms | 23288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int A[2009];
long long D[2][1009][2009];
int main() {
int N; scanf("%d",&N);
for(int i=1; i<=N; i++) scanf("%d",&A[i]);
for(int i=1; i<=N; i++) {
for(int j=1; j<=(i+1)/2; j++) {
D[0][j][i] = max(D[0][j][i-1], D[1][j][i-1]);
D[1][j][i] = D[0][j-1][i-1] + A[i];
}
}
for(int i=1; i<=(N+1)/2; i++) printf("%lld\n", max(D[0][i][N], D[1][i][N]));
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |