結果
問題 | No.807 umg tours |
ユーザー | amotoma3 |
提出日時 | 2020-02-29 19:22:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 503 ms / 4,000 ms |
コード長 | 2,054 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 180,692 KB |
実行使用メモリ | 42,176 KB |
最終ジャッジ日時 | 2024-05-03 00:12:33 |
合計ジャッジ時間 | 8,218 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 243 ms
32,348 KB |
testcase_12 | AC | 283 ms
24,440 KB |
testcase_13 | AC | 368 ms
33,332 KB |
testcase_14 | AC | 158 ms
16,136 KB |
testcase_15 | AC | 121 ms
13,568 KB |
testcase_16 | AC | 374 ms
35,140 KB |
testcase_17 | AC | 496 ms
40,780 KB |
testcase_18 | AC | 493 ms
40,900 KB |
testcase_19 | AC | 479 ms
39,252 KB |
testcase_20 | AC | 292 ms
22,528 KB |
testcase_21 | AC | 311 ms
23,424 KB |
testcase_22 | AC | 118 ms
12,032 KB |
testcase_23 | AC | 97 ms
10,112 KB |
testcase_24 | AC | 256 ms
32,708 KB |
testcase_25 | AC | 503 ms
42,176 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<ll> vl; typedef vector<vl> vvl; typedef pair<ll,ll> pl; typedef vector<pl> vp; #define fore(i,a,b) for(ll i=(ll)(a);i<=(ll)(b);++i) #define rep(i,n) fore(i,0,(n)-1) #define rfore(i,a,b) for(ll i=(ll)(b);i>=(ll)(a);--i) #define rrep(i,n) rfore(i,0,(n)-1) #define all(x) (x).begin(),(x).end() const ll INF=1001001001; const ll LINF=1001001001001001001; const ll D4[]={0,1,0,-1,0}; const ll D8[]={0,1,1,0,-1,-1,1,-1,0}; template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a,const T &b){if(b<a){a=b;return 1;}return 0;} template< typename T > struct edge { int src, to; T cost; edge(int to, T cost) : src(-1), to(to), cost(cost) {} edge(int src, int to, T cost) : src(src), to(to), cost(cost) {} edge &operator=(const int &x) { to = x; return *this; } operator int() const { return to; } }; template< typename T > using Edges = vector< edge< T > >; template< typename T > using WeightedGraph = vector< Edges< T > >; using UnWeightedGraph = vector< vector< int > >; template< typename T > using Matrix = vector< vector< T > >; void solve(){ ll n,m;cin>>n>>m; WeightedGraph<ll> g(2*n); while(m--){ ll a,b,c;cin>>a>>b>>c; a--,b--; g[a].emplace_back(b,c); g[b].emplace_back(a,c); g[a].emplace_back(b+n,0); g[b].emplace_back(a+n,0); g[a+n].emplace_back(b+n,c); g[b+n].emplace_back(a+n,c); } vl d(2*n,LINF); d[0]=d[n]=0; priority_queue<pl,vp,greater<>> pq; pq.push(pl(0,0)); while(!pq.empty()){ ll src,d1; tie(d1,src)=pq.top(); pq.pop(); if(d1>d[src])continue; for(auto &e:g[src]){ ll to=e.to,cost=e.cost; if(d[to]<=d1+cost)continue; d[to]=d1+cost; pq.push(pl(d1+cost,to)); } } rep(i,n)cout<<(d[i]+d[i+n])<<endl; } int main(){ cin.tie(0); ios::sync_with_stdio(0); solve(); }