結果

問題 No.1473 おでぶなおばけさん
ユーザー yataro800yataro800
提出日時 2023-01-10 21:21:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 1,592 bytes
コンパイル時間 4,361 ms
コンパイル使用メモリ 236,572 KB
実行使用メモリ 11,820 KB
最終ジャッジ日時 2024-06-01 07:57:29
合計ジャッジ時間 13,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 194 ms
11,472 KB
testcase_03 AC 148 ms
10,496 KB
testcase_04 AC 112 ms
7,860 KB
testcase_05 AC 46 ms
6,940 KB
testcase_06 AC 208 ms
10,880 KB
testcase_07 AC 190 ms
11,820 KB
testcase_08 AC 249 ms
11,700 KB
testcase_09 AC 174 ms
11,816 KB
testcase_10 AC 96 ms
7,552 KB
testcase_11 AC 98 ms
9,088 KB
testcase_12 AC 96 ms
8,192 KB
testcase_13 AC 58 ms
6,940 KB
testcase_14 AC 42 ms
6,940 KB
testcase_15 AC 82 ms
7,808 KB
testcase_16 AC 91 ms
7,040 KB
testcase_17 AC 8 ms
6,948 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 85 ms
7,680 KB
testcase_20 AC 109 ms
9,660 KB
testcase_21 AC 137 ms
9,424 KB
testcase_22 AC 109 ms
10,428 KB
testcase_23 AC 87 ms
9,616 KB
testcase_24 AC 90 ms
9,516 KB
testcase_25 AC 245 ms
10,336 KB
testcase_26 AC 255 ms
10,568 KB
testcase_27 AC 69 ms
6,944 KB
testcase_28 AC 205 ms
11,696 KB
testcase_29 AC 149 ms
9,344 KB
testcase_30 AC 185 ms
10,240 KB
testcase_31 AC 157 ms
11,636 KB
testcase_32 AC 157 ms
11,008 KB
testcase_33 AC 119 ms
9,508 KB
testcase_34 AC 63 ms
6,944 KB
testcase_35 AC 69 ms
6,940 KB
testcase_36 AC 117 ms
8,276 KB
testcase_37 AC 142 ms
9,256 KB
testcase_38 AC 25 ms
6,940 KB
testcase_39 AC 93 ms
7,040 KB
testcase_40 AC 92 ms
6,944 KB
testcase_41 AC 83 ms
6,940 KB
testcase_42 AC 82 ms
6,940 KB
testcase_43 AC 99 ms
8,932 KB
testcase_44 AC 100 ms
9,064 KB
testcase_45 AC 99 ms
8,940 KB
testcase_46 AC 128 ms
9,088 KB
testcase_47 AC 164 ms
10,240 KB
testcase_48 AC 147 ms
9,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <math.h>

#include <algorithm>
#include <array>
#include <atcoder/all>
#include <bitset>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <sstream>
#include <vector>

using namespace std;
using namespace atcoder;

using Graph = vector<vector<int>>;

using ll = long long;
typedef pair<ll, ll> P_ll;
typedef pair<int, int> P;

const ll INF_ll = 1e17;
const int INF = 1e8;
template <class T>
bool chmax(T& a, const T& b) {
  if (a < b) {
    a = b;
    return 1;
  }
  return 0;
}
template <class T>
bool chmin(T& a, const T& b) {
  if (b < a) {
    a = b;
    return 1;
  }
  return 0;
}
template <typename T>
using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;

int main() {
  int n, m;
  cin >> n >> m;
  vector<vector<P_ll>> G(n);
  for (int i = 0; i < m; i++) {
    ll s, t, d;
    cin >> s >> t >> d;
    s--;
    t--;
    G[s].push_back({t, d});
    G[t].push_back({s, d});
  }
  ll ok = 0;
  ll ng = 1e9 + 1;
  ll ans = -1;
  while (ng - ok > 1) {
    ll mid = (ok + ng) / 2;
    vector<ll> d(n, -1);
    d[0] = 0;
    queue<int> q;
    q.push(0);
    while (!q.empty()) {
      auto u = q.front();
      q.pop();
      for (auto e : G[u]) {
        if (e.second < mid) {
          continue;
        }
        int next = e.first;
        if (d[next] >= 0) {
          continue;
        }
        d[next] = d[u] + 1;
        q.push(next);
      }
    }
    if (d[n - 1] >= 0) {
      ok = mid;
      ans = d[n - 1];
    } else {
      ng = mid;
    }
  }
  cout << ok << " " << ans << endl;

  return 0;
}
0