#include "peru.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG
auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";}
#define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X)
#else
#define debug(...){}
#endif
#define ll long long
#define ld long double
#define endl '\n'
#define st first
#define nd second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define FOR(i,l,r) for(int i=(l);i<=(r);i++)
#define ROF(i,r,l) for(int i=(r);i>=(l);i--)
int inf=2000000007;
ll infl=1000000000000000007;
ll mod=1000000007;
ll mod1=998244353;
const int N=507;
ll DP1[N];
ll DP[N];
int a[N];
vector<pair<int,int>>G[N];
int solve(int n,int k,int* v)
{
FOR(i,1,n) a[i]=v[i-1];
a[0]=inf,a[n+1]=inf;
vector<pair<int,int>>X;
X.pb({inf,0});
FOR(i,1,n+1)
{
int last=-1;
while(X.back().st<a[i])
{
if(last!=-1&&i-1-X.back().nd<=k) G[i-1].pb({X.back().nd,last});
last=X.back().st;
X.pop_back();
}
if(last!=-1&&i-1-X.back().nd<=k) G[i-1].pb({X.back().nd,last});
X.pb({a[i],i});
}
X.clear();
X.pb({inf,n+1});
ROF(i,n,0)
{
int last=-1;
while(X.back().st<a[i])
{
if(last!=-1&&X.back().nd-1-i<=k) G[X.back().nd-1].pb({i,last});
last=X.back().st;
X.pop_back();
}
if(last!=-1&&X.back().nd-1-i<=k) G[X.back().nd-1].pb({i,last});
X.pb({a[i],i});
}
deque<pair<ll,int>>Q;
FOR(i,1,n)
{
DP[i]=infl;
if(sz(Q)>0&&Q[0].nd<=i-k) Q.pop_front();
while(sz(Q)>0&&Q.back().st<a[i]) Q.pop_back();
Q.pb({a[i],i});
DP[i]=DP[max(0,i-k)]+Q[0].st;
for(auto [j,c]:G[i])
{
debug(i,j,c);
DP[i]=min(DP[i],DP[j]+c);
}
ROF(j,i-1,1)
{
if(DP[j]<=DP[i]) break;
DP[j]=DP[i];
}
}
/*FOR(i,1,n)
{
DP1[i]=infl;
int mx=0;
ROF(j,i,1)
{
if(i-j+1>k) break;
mx=max(mx,a[j]);
DP1[i]=min(DP1[i],DP1[j-1]+mx);
}
}
FOR(i,1,n) debug(DP[i],DP1[i]);*/
ll h=0,pot=1;
ROF(i,n,1)
{
h=(h+DP[i]%mod*pot)%mod;
pot=pot*23%mod;
}
return (int)h;
}
Compilation message
peru.cpp: In function 'int solve(int, int, int*)':
peru.cpp:77:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
77 | for(auto [j,c]:G[i])
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |