# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
35098 | UncleGrandpa925 | 수열 (APIO14_sequence) | C++14 | 0 ms | 1840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*input
7 3
4 1 3 4 0 2 3
*/
#include <bits/stdc++.h>
using namespace std;
#define sp ' '
#define endl '\n'
#define fi first
#define se second
#define mp make_pair
#define N 100005
#define bit(x,y) ((x>>y)&1LL)
#define na(x) (#x) << ":" << x
ostream& operator << (ostream &os, vector<int>&x) {
for (int i = 0; i < x.size(); i++) os << x[i] << sp;
return os;
}
ostream& operator << (ostream &os, pair<int, int> x) {
cout << x.fi << sp << x.se << sp;
return os;
}
ostream& operator << (ostream &os, vector<pair<int, int> >&x) {
for (int i = 0; i < x.size(); i++) os << x[i] << endl;
return os;
}
int n, m;
int a[N];
int sum[N];
int dp[N][205];
int par[N][205];
vector<int> order;
signed main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin >> n >> m;
for (int i = 1; i <= n; i++) cin >> a[i], sum[i] = sum[i - 1] + a[i];
for (int i = 1; i <= n; i++) dp[i][0] = 0;
for (int p = 1; p <= m; p++) {
dp[1][p] = sum[1];
for (int i = 2; i <= n; i++) {
for (int j = 1; j < i; j++) {
if (dp[j][p - 1] + sum[j] * (sum[i] - sum[j]) > dp[i][p]) {
dp[i][p] = dp[j][p - 1] + sum[j] * (sum[i] - sum[j]);
par[i][p] = j;
}
}
}
}
cout << dp[n][m] << endl;
pair<int, int> cur = mp(n, m);
while (cur.se >= 1) {
order.push_back(par[cur.fi][cur.se]);
cur.fi = par[cur.fi][cur.se]; cur.se--;
}
reverse(order.begin(), order.end());
cout << order << endl;
}
컴파일 시 표준 에러 (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... |