結果
問題 | No.1442 I-wate Shortest Path Problem |
ユーザー | beet |
提出日時 | 2021-03-26 22:30:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 773 ms / 3,000 ms |
コード長 | 4,162 bytes |
コンパイル時間 | 2,896 ms |
コンパイル使用メモリ | 229,356 KB |
実行使用メモリ | 58,172 KB |
最終ジャッジ日時 | 2024-05-06 16:14:44 |
合計ジャッジ時間 | 12,904 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 8 ms
5,376 KB |
testcase_03 | AC | 39 ms
5,376 KB |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 38 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 32 ms
5,376 KB |
testcase_09 | AC | 13 ms
6,272 KB |
testcase_10 | AC | 43 ms
5,376 KB |
testcase_11 | AC | 38 ms
5,376 KB |
testcase_12 | AC | 509 ms
52,036 KB |
testcase_13 | AC | 259 ms
40,332 KB |
testcase_14 | AC | 409 ms
48,732 KB |
testcase_15 | AC | 355 ms
44,664 KB |
testcase_16 | AC | 457 ms
46,972 KB |
testcase_17 | AC | 726 ms
51,964 KB |
testcase_18 | AC | 710 ms
52,220 KB |
testcase_19 | AC | 571 ms
51,548 KB |
testcase_20 | AC | 767 ms
52,092 KB |
testcase_21 | AC | 773 ms
52,344 KB |
testcase_22 | AC | 316 ms
46,204 KB |
testcase_23 | AC | 600 ms
58,172 KB |
testcase_24 | AC | 208 ms
40,840 KB |
testcase_25 | AC | 461 ms
51,532 KB |
testcase_26 | AC | 200 ms
50,388 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; const char newl = '\n'; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);} template<typename T=Int> vector<T> read(size_t n){ vector<T> ts(n); for(size_t i=0;i<n;i++) cin>>ts[i]; return ts; } template<typename T> struct Dijkstra{ struct Edge{ Int to; T cost; Edge(Int to,T cost):to(to),cost(cost){} bool operator<(const Edge &o)const{return cost>o.cost;} }; vector< vector<Edge> > G; vector<T> ds; vector<Int> bs; Dijkstra(Int n):G(n){} void add_edge(Int u,Int v,T c){ G[u].emplace_back(v,c); } void build(Int s){ Int n=G.size(); ds.assign(n,numeric_limits<T>::max()); bs.assign(n,-1); priority_queue<Edge> pq; ds[s]=0; pq.emplace(s,ds[s]); while(!pq.empty()){ auto p=pq.top();pq.pop(); Int v=p.to; if(ds[v]<p.cost) continue; for(auto e:G[v]){ if(ds[e.to]>ds[v]+e.cost){ ds[e.to]=ds[v]+e.cost; bs[e.to]=v; pq.emplace(e.to,ds[e.to]); } } } } T operator[](Int k){return ds[k];} vector<Int> restore(Int to){ vector<Int> res; if(bs[to]<0) return res; while(~to) res.emplace_back(to),to=bs[to]; reverse(res.begin(),res.end()); return res; } }; struct LowestCommonAncestor{ Int h; vector< vector<Int> > G,par; vector<Int> dep; LowestCommonAncestor(Int n):G(n),dep(n){ h=1; while((1<<h)<=n) h++; par.assign(h,vector<Int>(n,-1)); } void add_edge(Int u,Int v){ G[u].emplace_back(v); G[v].emplace_back(u); } void dfs(Int v,Int p,Int d){ par[0][v]=p; dep[v]=d; for(Int u:G[v]) if(u!=p) dfs(u,v,d+1); } void build(Int r=0){ Int n=G.size(); dfs(r,-1,0); for(Int k=0;k+1<h;k++) for(Int v=0;v<n;v++) if(~par[k][v]) par[k+1][v]=par[k][par[k][v]]; } Int lca(Int u,Int v){ if(dep[u]>dep[v]) swap(u,v); for(Int k=0;k<h;k++) if((dep[v]-dep[u])>>k&1) v=par[k][v]; if(u==v) return u; for(Int k=h-1;k>=0;k--) if(par[k][u]!=par[k][v]) u=par[k][u],v=par[k][v]; return par[0][u]; } Int distance(Int u,Int v){ return dep[u]+dep[v]-dep[lca(u,v)]*2; } }; template<typename F> struct FixPoint : F{ FixPoint(F&& f):F(forward<F>(f)){} template<typename... Args> decltype(auto) operator()(Args&&... args) const{ return F::operator()(*this,forward<Args>(args)...); } }; template<typename F> inline decltype(auto) MFP(F&& f){ return FixPoint<F>{forward<F>(f)}; } //INSERT ABOVE HERE signed main(){ cin.tie(0); ios::sync_with_stdio(0); Int n,k; cin>>n>>k; using P = pair<Int, Int>; vector<vector<P>> G(n); Dijkstra<Int> D(n+k); LowestCommonAncestor lca(n); for(Int i=1;i<n;i++){ Int a,b,c; cin>>a>>b>>c; a--;b--; G[a].emplace_back(b,c); G[b].emplace_back(a,c); D.add_edge(a,b,c); D.add_edge(b,a,c); lca.add_edge(a,b); } lca.build(0); vector<Int> dep(n); MFP([&](auto dfs,Int v,Int p,Int d)->void{ dep[v]=d; for(auto[u,c]:G[v]) if(u!=p) dfs(u,v,d+c); })(0,-1,0); vector<vector<Int>> X(k),C(n); vector<Int> ps(k); for(Int i=0;i<k;i++){ Int m; cin>>m>>ps[i]; X[i].resize(m); for(Int j=0;j<m;j++){ cin>>X[i][j],X[i][j]--; C[X[i][j]].emplace_back(i); D.add_edge(X[i][j],n+i,ps[i]); D.add_edge(n+i,X[i][j],0); } } const Int INF = 1e18; vector<vector<Int>> E,dist; for(Int i=0;i<k;i++){ D.build(n+i); E.emplace_back(k,INF); dist.emplace_back(n); for(Int v=0;v<n;v++){ for(Int c:C[v]) chmin(E[i][c],D[v]); dist[i][v]=D[v]; } } Int q; cin>>q; for(Int i=0;i<q;i++){ Int u,v; cin>>u>>v; u--;v--; Int ans=dep[u]+dep[v]-2*dep[lca.lca(u,v)]; for(Int x=0;x<k;x++) for(Int y=0;y<k;y++) chmin(ans,dist[x][u]+E[x][y]+ps[x]+(x!=y)*ps[y]+dist[y][v]); cout<<ans<<newl; } return 0; }