# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
37457 | Just_Solve_The_Problem | 수열 (APIO14_sequence) | C++14 | 2000 ms | 20208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
using namespace std;
#define pb push_back
#define ll long long
const int N = (int)1e5 + 7;
int a[N];
ll pref[N];
ll ans = 0;
int n, k;
vector < int > anss;
int max (int a, int b) {
return (a < b) ? b : a;
}
void go (int pos, int kk, int last, ll sum, vector < int > vec = vector < int > ()) {
if (k + 1 == kk) {
if (sum >= ans) {
ans = sum;
anss = vec;
}
return ;
} else if (pos == n) {
return ;
}
vec.pb(pos);
go(pos + 1, kk + 1, pos, sum + (pref[n] - pref[pos]) * (pref[pos] - pref[last]), vec);
vec.pop_back();
go(pos + 1, kk, last, sum, vec);
}
main () {
scanf ("%d %d", &n, &k);
for (int i = 1; i <= n; i++) {
scanf ("%d", a + i);
}
for (int i = 1; i <= n; i++) {
pref[i] = pref[i - 1] + a[i];
}
go (1, 1, 0, 0);
printf ("%lld\n", ans);
for (int to : anss) {
printf ("%d ", to);
}
}
컴파일 시 표준 에러 (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... |