結果

問題 No.1473 おでぶなおばけさん
ユーザー yansi819yansi819
提出日時 2024-04-28 18:38:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 4,327 ms
コンパイル使用メモリ 276,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-17 13:27:19
合計ジャッジ時間 11,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 119 ms
10,624 KB
testcase_03 AC 97 ms
9,088 KB
testcase_04 AC 65 ms
7,552 KB
testcase_05 AC 23 ms
5,248 KB
testcase_06 AC 106 ms
8,960 KB
testcase_07 AC 123 ms
11,136 KB
testcase_08 AC 122 ms
11,136 KB
testcase_09 AC 123 ms
11,136 KB
testcase_10 AC 88 ms
5,248 KB
testcase_11 AC 84 ms
5,248 KB
testcase_12 AC 85 ms
5,248 KB
testcase_13 AC 53 ms
5,248 KB
testcase_14 AC 39 ms
5,248 KB
testcase_15 AC 71 ms
5,248 KB
testcase_16 AC 85 ms
5,248 KB
testcase_17 AC 7 ms
5,248 KB
testcase_18 AC 11 ms
5,248 KB
testcase_19 AC 60 ms
5,248 KB
testcase_20 AC 78 ms
8,448 KB
testcase_21 AC 89 ms
6,400 KB
testcase_22 AC 86 ms
9,216 KB
testcase_23 AC 69 ms
9,088 KB
testcase_24 AC 71 ms
8,320 KB
testcase_25 AC 107 ms
9,088 KB
testcase_26 AC 114 ms
8,832 KB
testcase_27 AC 45 ms
5,248 KB
testcase_28 AC 115 ms
11,136 KB
testcase_29 AC 86 ms
6,656 KB
testcase_30 AC 99 ms
7,296 KB
testcase_31 AC 108 ms
10,752 KB
testcase_32 AC 90 ms
9,088 KB
testcase_33 AC 75 ms
8,064 KB
testcase_34 AC 41 ms
6,016 KB
testcase_35 AC 47 ms
5,504 KB
testcase_36 AC 89 ms
6,656 KB
testcase_37 AC 81 ms
8,704 KB
testcase_38 AC 19 ms
5,248 KB
testcase_39 AC 84 ms
5,248 KB
testcase_40 AC 81 ms
5,248 KB
testcase_41 AC 73 ms
5,248 KB
testcase_42 AC 72 ms
5,248 KB
testcase_43 AC 88 ms
8,064 KB
testcase_44 AC 86 ms
8,192 KB
testcase_45 AC 87 ms
8,192 KB
testcase_46 AC 90 ms
7,936 KB
testcase_47 AC 111 ms
9,088 KB
testcase_48 AC 96 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int main() {
  int n, m; cin >> n >> m;
  vector<tuple<int, int, int>> edge(m);
  for (int i = 0; i < m; i++) {
    cin >> get<0>(edge[i]) >> get<1>(edge[i]) >> get<2>(edge[i]);
  }
  sort(edge.begin(), edge.end(), [&](auto a, auto b) {
    return get<2>(a) > get<2>(b);
  });
  int w = 0;
  dsu uf(n);
  for (int i = 0; i < m; i++) {
    auto [s, t, d] = edge[i];
    s--, t--;
    uf.merge(s, t);
    if (uf.same(0, n - 1)) {
      w = d;
      break;
    }
  }
  vector<vector<int>> g(n);
  for (int i = 0; i < m; i++) {
    auto [s, t, d] = edge[i];
    s--, t--;
    if (w <= d) {
      g[s].push_back(t);
      g[t].push_back(s);
    }
  }
  vector<ll> dist(n, 1e18);
  vector<bool> vis(n, false);
  dist[0] = 0;
  vis[0] = true;
  queue<int> que;
  que.push(0);
  while (!que.empty()) {
    int u = que.front(); que.pop();
    for (int v: g[u]) {
      if (vis[v]) continue;
      if (dist[v] > dist[u] + 1) {
        vis[v] = true;
        dist[v] = dist[u] + 1;
        que.push(v);
      }
    }
  }
  cout << w << ' ' << dist[n - 1] << endl;
  return 0;
}
0