# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
33959 | mohammad_kilani | 수열 (APIO14_sequence) | C++14 | 0 ms | 1840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define mod 1000000007
#define oo 2000000000
const int N = 100010 , K = 201;
int n , k , arr[N] , sum[N];
long long dp[N][K];
long long solve(int i,int j){
if(j == k) return 0;
if(i == n) return -4e18;
if(dp[i][j] != -1) return dp[i][j];
dp[i][j] = 0 ;
for(int l=i;l<n;l++){
long long cur = sum[l+1] - sum[i];
long long cur2 = sum[n] - sum[l+1];
long long num = cur * cur2;
dp[i][j] = max(dp[i][j],num + solve(l+1,j+1));
}
return dp[i][j];
}
void buildpath(int i,int j){
if(j == k) return;
if(i == n) return;
for(int l=i;l<n;l++){
long long cur1 = sum[l+1] - sum[i];
long long cur2 = sum[n] - sum[l+1];
long long num = cur1 * cur2;
if(num + solve(l+1,j+1) == dp[i][j]){
printf("%d ",i+1);
buildpath(l+1,j+1);
return ;
}
}
}
int main() {
//freopen("in.txt","r",stdin);
scanf("%d%d",&n,&k);
for(int i=0;i<n;i++){
scanf("%d",&arr[i]);
sum[i+1] = sum[i] + arr[i];
}
memset(dp,-1,sizeof(dp));
cout << solve(0,0) << endl;
buildpath(0,0);
cout << endl;
return 0;
}
컴파일 시 표준 에러 (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... |