Submission #1048312

#TimeUsernameProblemLanguageResultExecution timeMemory
1048312LittleOrangeAncient Books (IOI17_books)C++17
0 / 100
1 ms348 KiB
#include "books.h" #include<bits/stdc++.h> using namespace std; using ll = long long; struct obj{ ll i,w; bool operator<(const obj &o)const{ return w>o.w; } }; long long minimum_walk(std::vector<int> p, int s) { ll ans = 0; ll n = p.size(); /* if (s == 0){ vector<ll> u(n,0); for(ll i = 0;i<n;i++){ if(p[i]!=i){ ans += i-s; s = i; ll x = i; do{ ans += abs(p[x]-x); ll y = x; x = p[x]; p[y] = y; } while(x!=i); } } ans += s; }*/ ll gpc = 0; vector<ll> gp(n,-1); vector<vector<ll>> gps; for(ll i = 0;i<n;i++){ if (gp[i]==-1){ ll cur = gpc++; gps.emplace_back(); ll x = i; do{ gp[x] = cur; gps[cur].push_back(x); ans += abs(p[x]-x); x = p[x]; } while(x!=i); } } vector<ll> cost(n,n); priority_queue<obj> q; q.push({s,0}); vector<ll> vis(gpc,0); while(!q.empty()){ auto [i,w] = q.top();q.pop(); //cerr << i << " " << w << endl; if (cost[i]<=w) continue; cost[i] = w; if(i>0) q.push({i-1,w+1}); if(i<n-1) q.push({i+1,w+1}); if (!vis[gp[i]]){ vis[gp[i]] = 1; if (gps[gp[i]].size()>1) ans += cost[i]*2; for(ll j : gps[gp[i]]){ q.push({j,0}); } } } return ans; }
#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...