# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
407195 | tempus | 수열 (APIO14_sequence) | C++17 | 2093 ms | 31948 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define endl "\n"
#define ios ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0);
using namespace std;
const ll inf = 1e14;
int main() {
ios
int n, k;
cin >> n >> k;
ll p[n + 1];
p[0] = 0;
for (int i = 1; i <= n; ++ i) {
cin >> p[i];
p[i] += p[i - 1];
}
ll dp[n + 1][k + 2], opt[n + 1][k + 2];
for (int i = 1; i <= n; ++ i) {
dp[i][1] = p[i] * p[i];
for (int j = 2; j <= k + 1; ++ j) {
dp[i][j] = inf;
for (int h = 1; h < i; ++ h) {
if (dp[h][j - 1] + (p[i] - p[h]) * (p[i] - p[h]) <= dp[i][j]) {
dp[i][j] = dp[h][j - 1] + (p[i] - p[h]) * (p[i] - p[h]);
opt[i][j] = h;
컴파일 시 표준 에러 (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... |