Submission #1108654

#TimeUsernameProblemLanguageResultExecution timeMemory
1108654vladiliusEscape Route 2 (JOI24_escape2)C++17
6 / 100
3077 ms8308 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; #define pb push_back #define ff first #define ss second const ll inf = numeric_limits<ll> :: max(); int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, D; cin>>n>>D; vector<int> x(n); vector<pii> t[n]; for (int i = 1; i < n; i++){ cin>>x[i]; for (int j = 0; j < x[i]; j++){ int a, b; cin>>a>>b; t[i].pb({a, b}); } } for (int i = 1; i < n; i++){ sort(t[i].begin(), t[i].end()); vector<pii> nw; for (int j = 0; j < x[i]; j++){ while (!nw.empty() && nw.back().ss >= t[i][j].ss){ nw.pop_back(); } nw.push_back(t[i][j]); } t[i] = nw; } vector<int> p(n); for (int i = 1; i < n; i++){ p[i] = p[i - 1] + x[i]; } int S = p.back(); vector<int> g(S); vector<bool> e(S); for (int i = 1; i + 1 < n; i++){ int k = x[i + 1] - 1; pii mn = {1e9, 0}; for (int j = x[i] - 1; j >= 0; j--){ while (k >= 0 && t[i + 1][k].ff >= t[i][j].ss){ mn = min(mn, {t[i + 1][k].ss, k}); k--; } g[p[i - 1] + j] = p[i] + mn.ss; e[p[i - 1] + j] = (mn.ff == 1e9); } } for (int i = 0; i < x.back(); i++) g[p[n - 2] + i] = p[n - 2] + i; auto get = [&](int l, int r){ ll out = inf; for (int i = 0; i < x[l]; i++){ int tt = r - l - 1, x = p[l - 1] + i, cc = 0; while (tt--){ cc += e[x]; x = g[x]; } out = min(out, 1LL * D * cc + (t[r - 1][x - p[r - 2]].ss - t[l][i].ff)); } return out; }; int q; cin>>q; for (int i = 1; i <= q; i++){ int l, r; cin>>l>>r; cout<<get(l, r)<<"\n"; } }
#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...