# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
869318 | prohacker | 수열 (APIO14_sequence) | C++14 | 105 ms | 5464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
using namespace std;
const int N = 1010;
const int INF = INT_MAX;
const int mod = 1e9+7;
int n,m;
ll dp[N][210],ans;
int s[N],trace[N][210];
stack<int> st;
int get(int l, int r) {
return s[r] - s[l-1];
}
signed main()
{
if (fopen("task.inp", "r")) {
freopen("task.inp", "r", stdin);
freopen("task.out", "w", stdout);
}
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for(int i = 1 ; i <= n ; i++) {
int x; cin >> x;
s[i] = s[i-1] + x;
}
// s[n+1] = s[n];
for(int k = 1 ; k <= m ; k++) {
for(int i = 1 ; i <= n ; i++) {
for(int j = i-1 ; j >= 0 ; j--) {
if(dp[j][k-1]+1LL*(s[i]-s[j])*(s[n]-s[i]) > dp[i][k]) {
dp[i][k] = dp[j][k-1]+1LL*(s[i]-s[j])*(s[n]-s[i]);
trace[i][k] = j;
}
}
}
}
int id;
ans = 0;
for(int i = 1 ; i <= n ; i++) {
if(dp[i][m] > ans) {
ans = dp[i][m];
id = i;
}
}
cout << ans << '\n';
while(m > 0) {
cout << id << " ";
id = trace[id][m];
// st.push(n);
m--;
}
// while(!st.empty()) {
// cout << st.top() << " ";
// st.pop();
// }
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... |