結果

問題 No.807 umg tours
ユーザー deuteridayodeuteridayo
提出日時 2021-02-03 00:16:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 1,578 ms
コンパイル使用メモリ 186,940 KB
実行使用メモリ 63,568 KB
最終ジャッジ日時 2024-06-29 23:58:37
合計ジャッジ時間 13,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 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 952 ms
46,788 KB
testcase_12 AC 572 ms
37,620 KB
testcase_13 AC 896 ms
52,924 KB
testcase_14 AC 294 ms
27,308 KB
testcase_15 AC 224 ms
19,932 KB
testcase_16 AC 911 ms
47,372 KB
testcase_17 AC 1,189 ms
61,604 KB
testcase_18 AC 1,196 ms
61,500 KB
testcase_19 AC 1,079 ms
61,400 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 443 ms
58,920 KB
testcase_25 AC 1,182 ms
63,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
// #include<atcoder/all>
using namespace std;
// using namespace atcoder;
using lint = long long;
using graph = vector<vector<int>>;
#define endl '\n'
lint const mod = 1e9+7;
//long const mod = 998244353;


int main(){
    int n,m;
    cin >> n >> m;
    int a[m],b[m],c[m];
    vector<unordered_map<int,lint>>dist(n);
    for(int i=0;i<m;i++){
        cin >> a[i] >> b[i] >> c[i];
        a[i]--;
        b[i]--;
        dist[a[i]][b[i]] = c[i];
        dist[b[i]][a[i]] = c[i];
    }
    vector<vector<lint>> ans(n,vector<lint>(2,1<<30));
    ans[0][1] = 0;
    priority_queue<vector<lint> , vector<vector<lint>>, greater<vector<lint>>>que; // cost, v, state

    que.push({0,0,0});
    while(!que.empty()){
        lint cost = que.top()[0];
        lint v = que.top()[1];
        lint state = que.top()[2];
        que.pop();
        if(cost >= ans[v][state])continue;
        ans[v][state] = cost;
        for(auto e: dist[v]){
            lint nv = e.first;
            lint ncost = e.second;
            que.push({cost + ncost, nv, state});
            if(state == 0){
                que.push({cost, nv, 1});
            }
        }
    }
    for(int i=0;i<n;i++){
        cout << ans[i][0] + ans[i][1] << endl;
    }

}

0