結果

問題 No.1473 おでぶなおばけさん
ユーザー miscalcmiscalc
提出日時 2021-04-09 22:36:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 2,767 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 186,136 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-06-25 06:14:32
合計ジャッジ時間 7,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 120 ms
13,824 KB
testcase_03 AC 104 ms
11,648 KB
testcase_04 AC 67 ms
9,216 KB
testcase_05 AC 25 ms
5,376 KB
testcase_06 AC 113 ms
11,776 KB
testcase_07 AC 125 ms
14,720 KB
testcase_08 AC 130 ms
14,720 KB
testcase_09 AC 132 ms
14,720 KB
testcase_10 AC 88 ms
5,632 KB
testcase_11 AC 88 ms
5,632 KB
testcase_12 AC 87 ms
5,760 KB
testcase_13 AC 55 ms
5,376 KB
testcase_14 AC 40 ms
5,376 KB
testcase_15 AC 78 ms
5,504 KB
testcase_16 AC 87 ms
5,504 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 67 ms
6,272 KB
testcase_20 AC 84 ms
10,624 KB
testcase_21 AC 94 ms
8,320 KB
testcase_22 AC 101 ms
12,672 KB
testcase_23 AC 82 ms
11,776 KB
testcase_24 AC 83 ms
11,008 KB
testcase_25 AC 118 ms
12,160 KB
testcase_26 AC 124 ms
12,416 KB
testcase_27 AC 51 ms
6,144 KB
testcase_28 AC 129 ms
14,464 KB
testcase_29 AC 96 ms
8,576 KB
testcase_30 AC 111 ms
9,472 KB
testcase_31 AC 113 ms
14,464 KB
testcase_32 AC 97 ms
11,904 KB
testcase_33 AC 79 ms
10,496 KB
testcase_34 AC 45 ms
7,168 KB
testcase_35 AC 50 ms
6,528 KB
testcase_36 AC 90 ms
9,088 KB
testcase_37 AC 92 ms
11,136 KB
testcase_38 AC 21 ms
5,376 KB
testcase_39 AC 88 ms
5,760 KB
testcase_40 AC 89 ms
5,760 KB
testcase_41 AC 78 ms
5,632 KB
testcase_42 AC 78 ms
5,632 KB
testcase_43 AC 95 ms
10,664 KB
testcase_44 AC 96 ms
10,788 KB
testcase_45 AC 96 ms
10,788 KB
testcase_46 AC 99 ms
10,880 KB
testcase_47 AC 120 ms
12,288 KB
testcase_48 AC 106 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
constexpr ll MOD = 1e9 + 7;
//constexpr ll MOD = 998244353;
//constexpr ll MOD = ;
ll mod(ll A, ll M) {return (A % M + M) % M;}
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll divceil(ll A, ll B) {return (A + (B - 1)) / B;}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

template <class Abel> class unionfind
{
public:
  vector<ll> parent;
  vector<ll> rank;
  vector<Abel> diffw;

  unionfind(ll N, Abel U = 0)
  {
    parent = vector<ll>(N, -1);
    rank = vector<ll>(N, 0);
    diffw = vector<Abel>(N, U);
  }

  ll root(ll X)
  {
    if (parent.at(X) < 0) return X;
    ll R = root(parent.at(X));
    diffw.at(X) += diffw.at(parent.at(X));
    return parent.at(X) = R;
  }

  ll size(ll X)
  {
    return -parent.at(root(X));
  }

  Abel weight(ll X)
  {
    root(X);
    return diffw.at(X);
  }

  Abel diff(ll X, ll Y)
  {
    return weight(Y) - weight(X);
  }

  bool same(ll X, ll Y)
  {
    return (root(X) == root(Y));
  }

  bool unite(ll X, ll Y, Abel W = 0)
  {
    W += weight(X);
    W -= weight(Y);

    X = root(X);
    Y = root(Y);
    if (X == Y) return false;
    
    if (rank.at(X) < rank.at(Y)) 
    {
      swap(X, Y);
      W = -W;
    }
    if (rank.at(X) == rank.at(Y)) rank.at(X)++;
    parent.at(X) += parent.at(Y);
    parent.at(Y) = X;
    diffw.at(Y) = W;
    return true;
  }
};

int main()
{
  ll N, M;
  cin >> N >> M;

  using tlll = tuple<ll, ll, ll>;

  vector<tlll> DST(M);
  for (ll i = 0; i < M; i++)
  {
    ll s, t, d;
    cin >> s >> t >> d;
    s--, t--;
    DST.at(i) = make_tuple(d, s, t);
  }

  sort(DST.begin(), DST.end(), greater<tlll>());

  unionfind<ll> uf(N);

  ll maxw = INF;
  for (ll i = 0; i < M; i++)
  {
    ll d = get<0>(DST.at(i)), s = get<1>(DST.at(i)), t = get<2>(DST.at(i));
    if (!uf.same(s, t))
    {
      uf.unite(s, t);
      if (uf.same(0, N - 1))
      {
        maxw = d;
        break;
      }
    }
  }

  cout << maxw << " ";

  vector<vector<ll>> G(N);
  for (ll i = 0; i < M; i++)
  {
    ll d = get<0>(DST.at(i)), s = get<1>(DST.at(i)), t = get<2>(DST.at(i));
    if (maxw <= d)
    {
      G.at(s).push_back(t);
      G.at(t).push_back(s);
    }
  }

  queue<ll> que;
  vector<ll> dist(N, -1);
  que.push(0);
  dist.at(0) = 0;

  while (!que.empty())
  {
    ll v = que.front();
    que.pop();

    for (auto nv : G.at(v))
    {
      if (dist.at(nv) != -1)
        continue;

      dist.at(nv) = dist.at(v) + 1;
      que.push(nv);
    }
  }

  cout << dist.at(N - 1) << endl;
}
0