# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1116996 | whoknow | K개의 묶음 (IZhO14_blocks) | C++17 | 149 ms | 3536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define int long long
#define F first
#define S second
#define MAXN 100005
#define ii pair<int,int>
#define bit(i,j) ((i>>j)&1)
#define sz(i) (int)i.size()
#define endl '\n'
using namespace std;
const ll INF = 1e18;
int n, K;
int a[MAXN];
namespace sub1
{
int dp[2][MAXN];
void solve()
{
for(int i = 1; i <= n; i++)
dp[0][i] = max(dp[0][i - 1], a[i]);
for(int j = 2; j <= K; j++)
{
stack<ii>st;
for(int i = j; i <= n; i++)
{
int tmp = dp[0][i - 1];
while(sz(st) && st.top().S < a[i])
{
tmp = min(tmp, st.top().F);
st.pop();
}
if(sz(st) == 0 || tmp + a[i] <= st.top().F + st.top().S)
st.push({tmp,a[i]});
dp[1][i] = st.top().F + st.top().S;
}
for(int i = 1; i <= n; i++)
dp[0][i] = dp[1][i];
}
cout << dp[0][n];
}
}
main()
{
if(fopen("TEST.inp", "r"))
{
freopen("TEST.inp", "r", stdin);
freopen("TEST.out", "w", stdout);
}
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> K;
for(int i = 1; i <= n; i++)
cin >> a[i];
sub1::solve();
}
컴파일 시 표준 에러 (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... |