#include <bits/stdc++.h>
#pragma GCC optimize("Ofast,unroll-loops")
using namespace std;
const int NMAX = 5000;
const long long INF = 1e18;
priority_queue <pair<long long, pair<int, int>>> pq;
inline long long modul( long long x ) {return x < 0 ? -x : x;}
inline bool between( int a, int b, int c ) {return ( a <= b && b <= c ) || ( a >= b && b >= c );}
long long dist[NMAX][NMAX - 1];
inline void update( int i, int j, long long d ) {
if ( d < dist[i][j] ) {
dist[i][j] = d;
pq.push( { -d, { i, j } } );
}
}
int main() {
int n;
cin >> n;
vector <int> v;
for ( int i = 1, x; i <= n; i ++ ) {
cin >> x;
while ( v.size() >= 2 && between( v[v.size() - 2], v[v.size() - 1], x ) ) v.pop_back();
v.push_back( x );
}
n = v.size();
for ( int i = 0; i <= n - 1; i ++ ) {
for ( int j = 0; j <= n - 2; j ++ ) {
dist[i][j] = INF;
}
}
dist[0][n - 2] = 0;
pq.push( { 0, {0, n - 2} } );
while ( !pq.empty() ) {
auto p = pq.top();
int i = p.second.first, j = p.second.second;
long long d = dist[i][j];
if ( -p.first == d ) {
if ( i == j || i == j + 1 ) {
cout << d << '\n';
return 0;
}
if ( i + 1 < n && between( v[j], v[i + 1], v[j + 1] ) ) {
update( i + 1, j, d + modul( v[i] - v[i + 1] ) );
}
if ( i - 1 >= 0 && between( v[j], v[i - 1], v[j + 1] ) ) {
update( i - 1, j, d + modul( v[i] - v[i - 1] ) );
}
if ( i + 1 < n && between( v[i], v[j], v[i + 1] ) ) {
update( j, i, d + modul( v[i] - v[j] ) );
}
if ( i - 1 >= 0 && between( v[i], v[j], v[i - 1] ) ) {
update( j, i - 1, d + modul( v[i] - v[j] ) );
}
if ( i + 1 < n && between( v[i], v[j + 1], v[i + 1] ) ) {
update( j + 1, i, d + modul( v[i] - v[j + 1] ) );
}
if ( i - 1 >= 0 && between( v[i], v[j + 1], v[i - 1] ) ) {
update( j + 1, i - 1, d + modul( v[i] - v[j + 1] ) );
}
}
pq.pop();
}
cout << "NO\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4444 KB |
Output is correct |
2 |
Correct |
2 ms |
12636 KB |
Output is correct |
3 |
Correct |
6 ms |
39260 KB |
Output is correct |
4 |
Correct |
19 ms |
119604 KB |
Output is correct |
5 |
Correct |
48 ms |
195932 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
Output is correct |
2 |
Correct |
0 ms |
2396 KB |
Output is correct |
3 |
Correct |
1 ms |
6492 KB |
Output is correct |
4 |
Correct |
1 ms |
4444 KB |
Output is correct |
5 |
Correct |
3 ms |
16732 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4444 KB |
Output is correct |
2 |
Correct |
2 ms |
12636 KB |
Output is correct |
3 |
Correct |
58 ms |
39504 KB |
Output is correct |
4 |
Correct |
105 ms |
113444 KB |
Output is correct |
5 |
Correct |
135 ms |
113432 KB |
Output is correct |
6 |
Correct |
134 ms |
156504 KB |
Output is correct |
7 |
Correct |
143 ms |
150364 KB |
Output is correct |
8 |
Correct |
118 ms |
187380 KB |
Output is correct |
9 |
Correct |
151 ms |
189276 KB |
Output is correct |
10 |
Correct |
151 ms |
187228 KB |
Output is correct |