結果

問題 No.807 umg tours
ユーザー ngtkanangtkana
提出日時 2020-03-30 22:21:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,119 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 212,688 KB
実行使用メモリ 41,028 KB
最終ジャッジ日時 2024-05-03 00:15:03
合計ジャッジ時間 11,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
38,084 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 210 ms
32,348 KB
testcase_12 AC 204 ms
24,468 KB
testcase_13 AC 286 ms
33,332 KB
testcase_14 AC 104 ms
16,144 KB
testcase_15 AC 74 ms
13,568 KB
testcase_16 AC 295 ms
35,144 KB
testcase_17 AC 378 ms
40,908 KB
testcase_18 AC 373 ms
41,028 KB
testcase_19 AC 363 ms
39,248 KB
testcase_20 AC 175 ms
22,656 KB
testcase_21 AC 174 ms
23,168 KB
testcase_22 AC 59 ms
12,032 KB
testcase_23 AC 46 ms
10,112 KB
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
using real=long double;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,m;std::cin>>n>>m;
    std::vector<std::vector<std::pair<lint,lint>>>g(2*n);
    while(m--){
        lint a,b,c;std::cin>>a>>b>>c;a--,b--;
        g.at(a).emplace_back(b,c);
        g.at(b).emplace_back(a,c);
        g.at(a).emplace_back(n+b,0);
        g.at(b).emplace_back(n+a,0);
        g.at(n+a).emplace_back(n+b,c);
        g.at(n+b).emplace_back(n+a,c);
    }
    lint inf=std::numeric_limits<lint>::max();
    std::vector<lint>dist(2*n,inf);
    dist.at(0)=0;
    std::priority_queue<std::pair<lint,lint>>que;
    que.emplace(0,0);
    while(!que.empty()){
        lint x=que.top().second;que.pop();
        for(auto&&[y,w]:g.at(x)){
            lint d=dist.at(x)+w;
            if(dist.at(y)<=d)continue;
            que.emplace(-d,y);
            dist.at(y)=d;
        }
    }
    std::cout<<0<<'\n';
    for(lint i=1;i<n;i++){
        std::cout<<dist.at(i)+dist.at(n+i)<<'\n';
    }
}
0