結果

問題 No.160 最短経路のうち辞書順最小
ユーザー task4233task4233
提出日時 2019-01-10 23:38:16
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 166,528 KB
実行使用メモリ 9,672 KB
最終ジャッジ日時 2024-05-03 16:29:08
合計ジャッジ時間 2,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,028 KB
testcase_01 AC 4 ms
9,032 KB
testcase_02 AC 4 ms
8,932 KB
testcase_03 WA -
testcase_04 AC 7 ms
9,028 KB
testcase_05 AC 10 ms
9,672 KB
testcase_06 AC 13 ms
9,432 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 6 ms
9,024 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 6 ms
8,904 KB
testcase_20 AC 6 ms
8,836 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 4 ms
8,904 KB
testcase_28 WA -
testcase_29 AC 5 ms
9,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Edge{
  int to,cost;
};

vector<Edge> e[201010];
int d[201010];
int pre[201010];

int main(){
  int n,m,s,g;
  cin>>n>>m>>s>>g;
  int u,v,c;
  for(int i=0;i<m;++i){
    cin>>u>>v>>c;
    e[v].push_back(Edge{u,c});
    e[u].push_back(Edge{v,c});
  }
  fill_n(d, 201010, 1e9+1);
  
  priority_queue<int, vector<int>, greater<int>> p_q;
  p_q.push(g);
  d[g] = 0;
  while(!p_q.empty()){
    int fr=p_q.top();p_q.pop();

    for(auto &&t: e[fr]){
      if (d[t.to] > d[fr] + t.cost) {
        d[t.to] = d[fr] + t.cost;
        pre[t.to] = fr;
        p_q.push(t.to);
      }
    }
  }

  /*
  for (int i=0;i<n;++i){
    cout << d[i] << endl;
    cout << pre[i] <<endl<<endl;
  }
  */

  while (g != s){
    cout << s << " ";
    s = pre[s];
  }
  cout << s << endl;
  
  return 0;
}
0