結果

問題 No.1473 おでぶなおばけさん
ユーザー bonKotsubonKotsu
提出日時 2021-04-12 23:15:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 1,800 ms
コンパイル使用メモリ 181,072 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-06-28 18:34:06
合計ジャッジ時間 8,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 130 ms
9,984 KB
testcase_03 AC 139 ms
9,216 KB
testcase_04 AC 68 ms
7,168 KB
testcase_05 AC 28 ms
5,376 KB
testcase_06 AC 125 ms
9,472 KB
testcase_07 AC 131 ms
9,984 KB
testcase_08 AC 128 ms
10,112 KB
testcase_09 AC 127 ms
9,984 KB
testcase_10 AC 83 ms
6,144 KB
testcase_11 AC 85 ms
7,168 KB
testcase_12 AC 85 ms
6,656 KB
testcase_13 AC 53 ms
5,632 KB
testcase_14 AC 39 ms
5,376 KB
testcase_15 AC 70 ms
6,400 KB
testcase_16 AC 80 ms
5,888 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 75 ms
6,780 KB
testcase_20 AC 90 ms
8,704 KB
testcase_21 AC 102 ms
7,936 KB
testcase_22 AC 94 ms
9,216 KB
testcase_23 AC 81 ms
8,448 KB
testcase_24 AC 81 ms
8,448 KB
testcase_25 AC 115 ms
9,088 KB
testcase_26 AC 122 ms
9,088 KB
testcase_27 AC 46 ms
5,632 KB
testcase_28 AC 133 ms
10,112 KB
testcase_29 AC 115 ms
8,320 KB
testcase_30 AC 125 ms
8,768 KB
testcase_31 AC 116 ms
10,112 KB
testcase_32 AC 116 ms
9,600 KB
testcase_33 AC 89 ms
8,576 KB
testcase_34 AC 48 ms
6,400 KB
testcase_35 AC 57 ms
6,656 KB
testcase_36 AC 84 ms
7,168 KB
testcase_37 AC 89 ms
8,192 KB
testcase_38 AC 20 ms
5,376 KB
testcase_39 AC 82 ms
5,888 KB
testcase_40 AC 80 ms
5,888 KB
testcase_41 AC 71 ms
5,592 KB
testcase_42 AC 73 ms
5,588 KB
testcase_43 AC 99 ms
8,468 KB
testcase_44 AC 96 ms
8,476 KB
testcase_45 AC 99 ms
8,468 KB
testcase_46 AC 83 ms
7,936 KB
testcase_47 AC 102 ms
8,704 KB
testcase_48 AC 99 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>

struct Edge {
  int to, w;

  Edge(int to, int w) : to(to), w(w) {}

};

int main() {
  int n, m;
  cin >> n >> m;

  vector<vector<Edge>> G(n);
  rep(i, m) {
    int s, t, d;
    cin >> s >> t >> d;
    s--, t--;
    G[s].push_back(Edge(t, d));
    G[t].push_back(Edge(s, d));
  }

  vector<int> weight(100005, 0); 
  const int INF = 1001001001;
  weight[0] = INF;
  priority_queue<P, vector<P>> q;
  q.push({INF,0});

  while(!q.empty()) {
    int w = q.top().first, v = q.top().second; q.pop();
    rep(j, G[v].size()) {
      Edge e = G[v][j];
      int nv = e.to, cost = e.w;
      if (min(w, cost) > weight[nv]) {
        weight[nv] = min(w,cost);
        q.push({weight[nv], nv});
      }
    }
  }
  int ans_w = weight[n-1];
  
  vector<int> dist(100004, INF);
  dist[0] = 0;
  queue<int> que;
  que.push(0);
  while(!que.empty()) {
    int v = que.front(); que.pop();
    rep(i, G[v].size()) {
      Edge e = G[v][i];
      int nv = e.to, cost = e.w;
      if (dist[nv] != INF) continue;
      if (cost < ans_w) continue;
      dist[nv] = dist[v]+1;
      que.push(nv);
    }
  }
  int ans_d = dist[n-1];
  cout << ans_w << " " << ans_d << endl;
}
0