이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define ff first
#define ss second
#define pb push_back
using namespace std;
const int N = 1e5+5, mod = 1e9+7, sq = 500;
int n,cnt;
ll k[N],A[N],b[N],pre[N],q[N];
int dp[2][N], where[201][N];
int l,r;
ll get(int x,int i){
//cout << k[i] << " " << b[i] << endl;
return k[i]*x + b[i];
}
bool check1(int x,int y,int i){
//cout << "----" << endl;
//cout << x << " " << y << endl;
return get(pre[n]-pre[i],x) <= get(pre[n]-pre[i],y);
}
bool check2(int x,int y,int i){
//xi = (b[x]-b[i])/(k[i]-k[x])
//xy = (b[x]-b[y])/(k[y]-k[x])
//xi >= xy
if(k[y] == k[i]) return (b[i] >= b[y]);
return (b[x]-b[i])*(k[y]-k[x]) >= (b[x]-b[y])*(k[i]-k[x]);
}
inline void test_case(){
cin >> n >> cnt;
for(int i = 1; i <= n; i++){
cin >> A[i];
pre[i] = pre[i-1] + A[i];
}
//cout << pre[1] << endl;
for(int j = 1; j <= cnt; j++){
q[1] = 0; l = 1, r = 2;
k[1] = 0, b[1] = 0;
for(int i = 1; i <= n; i++){
while(r-l > 1 && check1(l,l+1,i))l++;
int x = q[l]; //cout << x << " ";
where[j][i] = x;
dp[1][i] = dp[0][x] + (pre[n]-pre[i])*(pre[i]-pre[x]);
while(r-l > 1 && check2(r-2,r-1,i))r--;
q[r] = i;
k[r] = -pre[i];
b[r] = dp[0][i];
//cout << r << " " << k[r] << endl;
r++;
}
//cout << endl;
for(int i = 1; i <= n; i++) dp[0][i] = dp[1][i];// cout << dp[0][i] << " ";
//cout << endl;
}
int ind = 0;
int mx = 0;
for(int i = 1; i <= n; i++){
if(dp[0][i] > mx){
mx = dp[0][i];
ind = i;
}
}
cout << dp[0][ind] << endl;
int a = cnt;
while(a>0){
cout << ind << " ";
ind = where[a][ind];
a--;
}
}
main(){
ios::sync_with_stdio(0);
int T = 1;
//cin >> T;
while(T--){
test_case();
}
}
컴파일 시 표준 에러 (stderr) 메시지
sequence.cpp:84:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
84 | main(){
| ^
# | 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... |