이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define f0(i, n) for(int i=(0); i<n; i++)
#define f1(i, n) for(int i=(1); i<=n; i++)
using namespace std;
typedef long long ll;
const int N = 100002;
int n, a[N], k;
ll f[N][102];
main(){
ios_base::sync_with_stdio(0);
cin >> n >> k;
stack <int> s;
f1(i, n){
cin >> a[i];
while(s.size() && a[s.top()] <= a[i]) s.pop();
f1(j, k){
if(i >= j){
if(s.size()==0) f[i][j] = f[j - 1][j - 1] + a[i];
else{
if(s.top() >= j - 1) f[i][j] = f[s.top()][j - 1] + a[i];
else f[i][j] = f[j - 1][j - 1] + a[i];
}
}
}
s.push(i);
}
ll res = 1e17;
ll ma = a[n];
for(int j = n - 1; j >= k - 1; j--){
res = min(res, f[j][k - 1] + ma);
ma = max(ma, ll(a[j]));
}
cout << res;
}
컴파일 시 표준 에러 (stderr) 메시지
blocks.cpp:12:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
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... |