結果

問題 No.160 最短経路のうち辞書順最小
ユーザー goodbatongoodbaton
提出日時 2019-02-23 13:12:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 1,930 bytes
コンパイル時間 868 ms
コンパイル使用メモリ 101,136 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 15:51:34
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 14 ms
5,248 KB
testcase_05 AC 15 ms
5,248 KB
testcase_06 AC 15 ms
5,248 KB
testcase_07 AC 12 ms
5,248 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 AC 13 ms
5,248 KB
testcase_11 AC 12 ms
5,248 KB
testcase_12 AC 12 ms
5,248 KB
testcase_13 AC 12 ms
5,248 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 12 ms
5,248 KB
testcase_17 AC 13 ms
5,248 KB
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 13 ms
5,248 KB
testcase_20 AC 13 ms
5,248 KB
testcase_21 AC 12 ms
5,248 KB
testcase_22 AC 12 ms
5,248 KB
testcase_23 AC 13 ms
5,248 KB
testcase_24 AC 13 ms
5,248 KB
testcase_25 AC 13 ms
5,248 KB
testcase_26 AC 13 ms
5,248 KB
testcase_27 AC 12 ms
5,248 KB
testcase_28 AC 17 ms
5,248 KB
testcase_29 AC 12 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>

#include <iostream>
#include <complex>
#include <string>
#include <algorithm>
#include <numeric>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>

#include <functional>
#include <cassert>

typedef long long ll;
using namespace std;

#ifndef LOCAL
#define debug(x) ;
#else
#define debug(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl;

template <typename T1, typename T2>
ostream &operator<<(ostream &out, const pair<T1, T2> &p) {
  out << "{" << p.first << ", " << p.second << "}";
  return out;
}

template <typename T>
ostream &operator<<(ostream &out, const vector<T> &v) {
  out << '{';
  for (const T &item : v) out << item << ", ";
  out << "\b\b}";
  return out;
}
#endif

#define mod 1000000007 //1e9+7(prime number)
#define INF 1000000000 //1e9
#define LLINF 2000000000000000000LL //2e18
#define SIZE 210

ll dist[SIZE][SIZE];
ll dist_input[SIZE][SIZE];

int main(){
  int N, M, S, G;

  scanf("%d%d%d%d", &N, &M, &S, &G);

  for(int i=0;i<N;i++) {
    for(int j=0;j<N;j++) {
      dist[i][j] = LLINF;
      dist_input[i][j] = LLINF;
    }
    dist[i][i] = 0;
  }

  for(int i=0;i<M;i++){
    int a, b, c;
    scanf("%d%d%d", &a, &b, &c);
    dist[a][b] = c;
    dist[b][a] = c;
    dist_input[a][b] = c;
    dist_input[b][a] = c;
  }

  for(int k=0;k<N;k++){
    for(int i=0;i<N;i++){
      for(int j=0;j<N;j++){
        dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]);
      }
    }
  }

  vector<int> ans;
  ans.push_back(S);
  int now = S;

  while(now != G){
    for(int i=0;i<N;i++){
      if (i != now && dist_input[now][i] + dist[i][G] == dist[now][G]) {
        ans.push_back(i);
        now = i;
        break;
      }
    }
  }

  for(int i=0;i<ans.size();i++){
    printf("%d%c", ans[i], " \n"[i+1 == ans.size()]);
  }

  return 0;
}
0