結果

問題 No.807 umg tours
ユーザー chocopuuchocopuu
提出日時 2019-03-22 23:55:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 304 ms / 4,000 ms
コード長 1,729 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 177,180 KB
実行使用メモリ 27,480 KB
最終ジャッジ日時 2024-05-02 23:35:44
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,296 KB
testcase_01 AC 6 ms
7,168 KB
testcase_02 AC 5 ms
7,296 KB
testcase_03 AC 5 ms
7,296 KB
testcase_04 AC 5 ms
7,296 KB
testcase_05 AC 6 ms
7,424 KB
testcase_06 AC 5 ms
7,296 KB
testcase_07 AC 5 ms
7,424 KB
testcase_08 AC 5 ms
7,296 KB
testcase_09 AC 6 ms
7,296 KB
testcase_10 AC 5 ms
7,296 KB
testcase_11 AC 153 ms
21,600 KB
testcase_12 AC 160 ms
17,576 KB
testcase_13 AC 222 ms
21,300 KB
testcase_14 AC 85 ms
13,140 KB
testcase_15 AC 55 ms
11,620 KB
testcase_16 AC 195 ms
22,312 KB
testcase_17 AC 304 ms
26,496 KB
testcase_18 AC 274 ms
26,660 KB
testcase_19 AC 274 ms
23,376 KB
testcase_20 AC 140 ms
14,208 KB
testcase_21 AC 153 ms
14,464 KB
testcase_22 AC 51 ms
10,240 KB
testcase_23 AC 37 ms
9,728 KB
testcase_24 AC 101 ms
23,360 KB
testcase_25 AC 278 ms
27,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define fi first
#define se second
#define FOR(i,n) for(int i = 0;i<n;i++)
#define rep(i,s,n) for(int i = s;i<n;i++)
#define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--)
#define all(v) (v).begin(),(v).end()
#define chmin(a,b) a=min((a),(b))
#define chmax(a,b) a=max((a),(b))
#define endl '\n'
#define IOS() ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
const ll MOD=1000000007,INF=1ll<<60;
typedef pair<int,pint>P2;

int N,M;
vpint g[100010];
int dp[100010][2];

signed main() {
    IOS();
    cin>>N>>M;
    vpint v(M);
    rep(i,0,M){
        int a,b,c;
        cin>>a>>b>>c;
        a--;b--;
        v[i]={a,b};
        g[a].pb({b,c});
        g[b].pb({a,c});
    }
    
    rep(i,0,100010)rep(j,0,2)dp[i][j]=INF;
    dp[0][0]=dp[0][1]=0;
    priority_queue<P2,vector<P2>,greater<P2>>que;
    que.push(P2(0,{0,0}));
    while(!que.empty()){
        P2 p=que.top();
        que.pop();
        int cost=p.fi;
        int now=p.se.fi;
        int j=p.se.se;
        if(dp[now][j]<cost)continue;
        for(auto e:g[now]){
            if(j==0){
                if(dp[e.fi][1]>cost){
                    que.push(P2(dp[e.fi][1]=cost,{e.fi,1}));
                }
            }
            if(dp[e.fi][j]>cost+e.se){
                que.push(P2(dp[e.fi][j]=cost+e.se,{e.fi,j}));
            }
        }
    }
    
    rep(i,0,N){
        cout<<dp[i][0]+dp[i][1]<<endl;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    return 0;
}
0