Submission #1044114

#TimeUsernameProblemLanguageResultExecution timeMemory
1044114c2zi6Text editor (CEOI24_editor)C++14
0 / 100
4119 ms793632 KiB
#define _USE_MATH_DEFINES #include <bits/stdc++.h> #define ff first #define ss second #define pb push_back #define all(a) (a).begin(), (a).end() #define replr(i, a, b) for (int i = int(a); i <= int(b); ++i) #define reprl(i, a, b) for (int i = int(a); i >= int(b); --i) #define rep(i, n) for (int i = 0; i < int(n); ++i) #define mkp(a, b) make_pair(a, b) using namespace std; typedef long long ll; typedef long double ld; typedef pair<int, int> PII; typedef vector<int> VI; typedef vector<PII> VPI; typedef vector<VI> VVI; typedef vector<VVI> VVVI; typedef vector<VPI> VVPI; typedef pair<ll, ll> PLL; typedef vector<ll> VL; typedef vector<PLL> VPL; typedef vector<VL> VVL; typedef vector<VVL> VVVL; typedef vector<VPL> VVPL; template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;} template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;} #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; template<typename T> using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; void solve() { int n; cin >> n; int r1, c1, r2, c2; cin >> r1 >> c1 >> r2 >> c2; r1--, c1--, r2--, c2--; VI a(n); for (int& x : a) cin >> x; priority_queue<pair<ll, PII>> pq; map<PII, int> vis; map<PII, ll> dist; replr(c, 0, a[r1]) { dist[{r1, c}] = abs(c - c1); pq.push({dist[{r1, c}], {r1, c}}); } while (pq.size()) { PII u = pq.top().ss; pq.pop(); if (vis[u]) continue; vector<pair<PII, ll>> harevan; if (true) { auto[r, c] = u; if (r) { harevan.pb({{r-1, min(c, a[r-1])}, 1}); if (c == 0) harevan.pb({{r-1, a[r-1]}, 1}); } if (r != n-1) { harevan.pb({{r+1, min(c, a[r+1])}, 1}); if (c == a[r]) harevan.pb({{r+1, 0}, 1}); } harevan.pb({{r, a[r]}, a[r]-c}); harevan.pb({{r, 0}, c}); } for (auto[v, w] : harevan) { if (!dist.count(v) || dist[u] + w < dist[v]) { dist[v] = dist[u] + w; pq.push({dist[v], v}); } } } ll ans = 1e18; for (auto[u, d] : dist) { if (u.ff == r2) { /*cout << "Distance to (" << u.ff << ", " << u.ss << ") = " << d << endl;*/ setmin(ans, 1ll * abs(u.ss - c2) + d); } } cout << ans << endl; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL), cout.tie(NULL); /*freopen("mincross.in", "r", stdin); */ /*freopen("test.out", "w", stdout); */ int t = 1; /*cin >> t; */ while (t--) solve(); }

Compilation message (stderr)

Main.cpp: In function 'void solve()':
Main.cpp:54:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   54 |             auto[r, c] = u;
      |                 ^
Main.cpp:66:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   66 |         for (auto[v, w] : harevan) {
      |                  ^
Main.cpp:74:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   74 |     for (auto[u, d] : dist) {
      |              ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...