# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
23164 | ruhanhabib39 | 수열 (APIO14_sequence) | C++14 | 0 ms | 1844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long Long;
const int MAXN = 1e5;
const int MAXK = 200;
int N, K;
Long A[MAXN + 10], S[MAXN + 10];
Long dp[MAXK + 10][MAXN + 10];
int pos[MAXK + 10][MAXN + 10];
void calc_dp() {
for(int k = 1; k <= K; k++) {
for(int i = k; i <= N; i++) {
dp[k][i] = 0;
for(int j = max(1, k-1); j < i; j++) {
if(S[j]*S[i]-S[j]*S[j]+dp[k-1][j] >= dp[k][i]) {
dp[k][i] = S[j]*S[i] - S[j]*S[j] + dp[k-1][j];
pos[k][i] = j;
}
}
}
}
}
int main() {
scanf("%d%d", &N, &K);
S[0] = 0;
for(int i = 1; i <= N; i++) {
scanf("%lld", &A[i]);
S[i] = A[i] + S[i-1];
}
calc_dp();
printf("%lld\n", dp[K][N]);
int i = N, k = K;
while(k > 0) {
i = pos[k][i];
printf("%d ", i);
k--;
}
printf("\n");
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |