結果

問題 No.807 umg tours
ユーザー karinohitokarinohito
提出日時 2024-09-18 19:07:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 431 ms / 4,000 ms
コード長 1,264 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 221,004 KB
実行使用メモリ 36,008 KB
最終ジャッジ日時 2024-09-18 19:07:53
合計ジャッジ時間 8,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 172 ms
19,728 KB
testcase_12 AC 219 ms
21,480 KB
testcase_13 AC 304 ms
24,996 KB
testcase_14 AC 130 ms
13,800 KB
testcase_15 AC 95 ms
11,392 KB
testcase_16 AC 279 ms
25,968 KB
testcase_17 AC 418 ms
34,072 KB
testcase_18 AC 431 ms
34,612 KB
testcase_19 AC 382 ms
30,816 KB
testcase_20 AC 241 ms
22,640 KB
testcase_21 AC 278 ms
23,392 KB
testcase_22 AC 97 ms
12,032 KB
testcase_23 AC 73 ms
9,984 KB
testcase_24 AC 207 ms
33,856 KB
testcase_25 AC 381 ms
36,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,M;
    cin>>N>>M;
    vector<vector<pair<ll,ll>>> G(N);
    for(int i=0;i<M;i++){
        ll a,b,c;
        cin>>a>>b>>c;
        a--;b--;
        G[a].push_back({b,c});
        G[b].push_back({a,c});
    }
    vector<vector<ll>> D(N,vector<ll>(2,1e18));
    D[0][0]=0;
    priority_queue<pair<ll,pair<ll,ll>>,vector<pair<ll,pair<ll,ll>>>,greater<pair<ll,pair<ll,ll>>>> Q;
    Q.push({0,{0,0}});
    vector<vector<bool>> seen(N,vector<bool>(2,0));
    while(!Q.empty()){
        ll c=Q.top().first;
        auto [n,d]=Q.top().second;
        Q.pop();
        if(seen[n][d])continue;
        seen[n][d]=1;
        for(auto [v,w]:G[n]){
            if(seen[v][d])continue;
            if(D[v][d]>c+w){
                D[v][d]=c+w;
                Q.push({c+w,{v,d}});
            }
        }
        if(d==0){
            for(auto [v,w]:G[n]){
                if(seen[v][1])continue;
                if(D[v][1]>c){
                    D[v][1]=c;
                    Q.push({c,{v,1}});
                }
            }
        }
    }
    for(int i=0;i<N;i++){
        cout<<min(D[i][0]*2,D[i][0]+D[i][1])<<endl;
    }
}
0