# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1065876 |
2024-08-19T12:28:47 Z |
Rafi22 |
Peru (RMI20_peru) |
C++14 |
|
33 ms |
59220 KB |
#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=2500007;
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;
int mx=0;
FOR(i,1,k)
{
mx=max(mx,a[i]);
G[i].pb({0,mx});
}
mx=0;
ROF(i,n,n-k+1)
{
mx=max(mx,a[i]);
G[n].pb({i-1,mx});
}
vector<pair<int,int>>X;
X.pb({inf+1,0});
FOR(i,1,n+1)
{
int last=-1;
while(X.back().st<a[i])
{
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+1,n+1});
ROF(i,n,0)
{
int last=-1;
while(X.back().st<=a[i])
{
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});
if(i>=k) DP[i]=DP[i-k]+Q[0].st;
for(auto [j,c]:G[i])
{
debug(i,j,c);
DP[i]=min(DP[i],DP[j]+c);
}
}
ROF(i,n-1,1) DP[i]=min(DP[i],DP[i+1]);
FOR(i,1,n) debug(DP[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:84:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
84 | for(auto [j,c]:G[i])
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
33 ms |
59220 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
33 ms |
59220 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
33 ms |
59220 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |