Submission #768662

#TimeUsernameProblemLanguageResultExecution timeMemory
768662marvinthangSky Walking (IOI19_walk)C++17
100 / 100
807 ms80720 KiB
#include "walk.h" /************************************* * author: marvinthang * * created: 28.06.2023 15:43:09 * *************************************/ #include <bits/stdc++.h> using namespace std; #define fi first #define se second #define left ___left #define right ___right #define TIME (1.0 * clock() / CLOCKS_PER_SEC) #define MASK(i) (1LL << (i)) #define BIT(x, i) ((x) >> (i) & 1) #define __builtin_popcount __builtin_popcountll #define ALL(v) (v).begin(), (v).end() #define REP(i, n) for (int i = 0, _n = (n); i < _n; ++i) #define REPD(i, n) for (int i = (n); i--; ) #define FOR(i, a, b) for (int i = (a), _b = (b); i < _b; ++i) #define FORD(i, b, a) for (int i = (b), _a = (a); --i >= _a; ) #define FORE(i, a, b) for (int i = (a), _b = (b); i <= _b; ++i) #define FORDE(i, b, a) for (int i = (b), _a = (a); i >= _a; --i) #define scan_op(...) istream & operator >> (istream &in, __VA_ARGS__ &u) #define print_op(...) ostream & operator << (ostream &out, const __VA_ARGS__ &u) #ifdef LOCAL #include "debug.h" #else #define file(name) if (fopen(name".inp", "r")) { freopen(name".inp", "r", stdin); freopen(name".out", "w", stdout); } #define DB(...) 23 #define db(...) 23 #define debug(...) 23 #endif template <class U, class V> scan_op(pair <U, V>) { return in >> u.first >> u.second; } template <class T> scan_op(vector <T>) { for (size_t i = 0; i < u.size(); ++i) in >> u[i]; return in; } template <class U, class V> print_op(pair <U, V>) { return out << '(' << u.first << ", " << u.second << ')'; } template <size_t i, class T> ostream & print_tuple_utils(ostream &out, const T &tup) { if constexpr(i == tuple_size<T>::value) return out << ")"; else return print_tuple_utils<i + 1, T>(out << (i ? ", " : "(") << get<i>(tup), tup); } template <class ...U> print_op(tuple<U...>) { return print_tuple_utils<0, tuple<U...>>(out, u); } template <class Con, class = decltype(begin(declval<Con>()))> typename enable_if <!is_same<Con, string>::value, ostream&>::type operator << (ostream &out, const Con &con) { out << '{'; for (__typeof(con.begin()) it = con.begin(); it != con.end(); ++it) out << (it == con.begin() ? "" : ", ") << *it; return out << '}'; } template <class A, class B> bool minimize(A &a, B b) { if (a > b) { a = b; return true; } return false; } template <class A, class B> bool maximize(A &a, B b) { if (a < b) { a = b; return true; } return false; } // end of template const long long INF = 1e18; long long min_distance(vector <int> x, vector <int> h, vector <int> l, vector <int> r, vector <int> y, int s, int g) { int n = x.size(); vector <vector <int>> startAt(n), endAt(n); for (int x: {s, g}) { vector <pair <int, int>> f; REP(i, n) f.emplace_back(h[i], i); vector <int> nl, nr, ny; REP(i, l.size()) { if (l[i] <= x && x <= r[i]) f.emplace_back(y[i], -1 - i); else { nl.push_back(l[i]); nr.push_back(r[i]); ny.push_back(y[i]); } } sort(f.rbegin(), f.rend()); set <int> s; for (auto [_, i]: f) { if (i >= 0) s.insert(i); else { i = -1 - i; auto it = s.lower_bound(x); int b = *it; int a = b == x ? x : *prev(it); if (a != l[i]) { nl.push_back(l[i]); nr.push_back(a); ny.push_back(y[i]); } if (a != b) { nl.push_back(a); nr.push_back(b); ny.push_back(y[i]); } if (b != r[i]) { nl.push_back(b); nr.push_back(r[i]); ny.push_back(y[i]); } } } l = move(nl); r = move(nr); y = move(ny); } REP(i, l.size()) { startAt[l[i]].push_back(i); endAt[r[i]].push_back(i); } map <int, int> heights; vector <vector <int>> yy(n); vector <vector <pair <int, int>>> adj; vector <int> pref(n); auto add_edge = [&] (int u, int v, int w) { adj[u].emplace_back(w, v); adj[v].emplace_back(w, u); }; REP(i, n) { if (i) pref[i] = pref[i - 1] + yy[i - 1].size(); if (i == s || i == g) { yy[i].push_back(0); for (int j: startAt[i]) yy[i].push_back(y[j]); for (int j: endAt[i]) yy[i].push_back(y[j]); for (auto it: heights) if (it.fi <= h[i]) yy[i].push_back(it.fi); sort(ALL(yy[i])); yy[i].erase(unique(ALL(yy[i])), yy[i].end()); adj.resize(pref[i] + yy[i].size()); REP(j, (int) yy[i].size() - 1) add_edge(pref[i] + j, pref[i] + j + 1, yy[i][j + 1] - yy[i][j]); } else { for (int j: startAt[i]) { yy[i].push_back(y[j]); auto it = heights.lower_bound(y[j]); if (it != heights.begin()) yy[i].push_back(prev(it)->fi); } for (int j: endAt[i]) { yy[i].push_back(y[j]); auto it = heights.lower_bound(y[j]); if (it != heights.begin()) yy[i].push_back(prev(it)->fi); } sort(ALL(yy[i])); yy[i].erase(unique(ALL(yy[i])), yy[i].end()); adj.resize(pref[i] + yy[i].size()); for (int j: startAt[i]) { int p = lower_bound(ALL(yy[i]), y[j]) - yy[i].begin(); if (p) add_edge(pref[i] + p - 1, pref[i] + p, yy[i][p] - yy[i][p - 1]); } for (int j: endAt[i]) { int p = lower_bound(ALL(yy[i]), y[j]) - yy[i].begin(); if (p) add_edge(pref[i] + p - 1, pref[i] + p, yy[i][p] - yy[i][p - 1]); } } REP(j, yy[i].size()) if (heights.count(yy[i][j])) { int k = heights[yy[i][j]]; int p = lower_bound(ALL(yy[k]), yy[i][j]) - yy[k].begin(); add_edge(pref[k] + p, pref[i] + j, x[i] - x[k]); heights[yy[i][j]] = i; } for (int j: endAt[i]) heights.erase(y[j]); for (int j: startAt[i]) heights[y[j]] = i; } priority_queue <pair <long long, int>, vector <pair <long long, int>>, greater <pair <long long, int>>> pq; vector <long long> dist(adj.size(), INF); pq.emplace(dist[pref[s]] = 0, pref[s]); while (!pq.empty()) { auto [du, u] = pq.top(); pq.pop(); if (du != dist[u]) continue; for (auto [w, v]: adj[u]) if (minimize(dist[v], du + w)) pq.emplace(dist[v], v); } return dist[pref[g]] < INF ? dist[pref[g]] : -1; }
#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...