結果

問題 No.1473 おでぶなおばけさん
ユーザー gotetengoteten
提出日時 2021-12-01 23:08:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,731 bytes
コンパイル時間 1,918 ms
コンパイル使用メモリ 181,956 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-05 00:57:49
合計ジャッジ時間 8,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 170 ms
12,416 KB
testcase_03 AC 140 ms
11,392 KB
testcase_04 AC 94 ms
8,192 KB
testcase_05 AC 29 ms
5,376 KB
testcase_06 AC 154 ms
11,820 KB
testcase_07 AC 162 ms
12,416 KB
testcase_08 AC 163 ms
12,416 KB
testcase_09 AC 157 ms
12,352 KB
testcase_10 AC 91 ms
7,552 KB
testcase_11 AC 91 ms
8,832 KB
testcase_12 AC 92 ms
8,320 KB
testcase_13 AC 54 ms
6,272 KB
testcase_14 AC 40 ms
5,376 KB
testcase_15 AC 77 ms
7,552 KB
testcase_16 AC 87 ms
7,040 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 83 ms
8,192 KB
testcase_20 AC 107 ms
10,368 KB
testcase_21 AC 119 ms
10,040 KB
testcase_22 AC 114 ms
11,520 KB
testcase_23 AC 93 ms
10,240 KB
testcase_24 AC 95 ms
10,112 KB
testcase_25 AC 141 ms
11,188 KB
testcase_26 AC 148 ms
11,504 KB
testcase_27 AC 53 ms
6,144 KB
testcase_28 AC 159 ms
12,288 KB
testcase_29 AC 126 ms
10,104 KB
testcase_30 AC 145 ms
11,136 KB
testcase_31 AC 146 ms
12,416 KB
testcase_32 AC 146 ms
12,084 KB
testcase_33 AC 109 ms
10,244 KB
testcase_34 AC 54 ms
7,040 KB
testcase_35 AC 66 ms
7,424 KB
testcase_36 AC 98 ms
8,704 KB
testcase_37 AC 110 ms
9,856 KB
testcase_38 AC 22 ms
5,376 KB
testcase_39 AC 89 ms
7,040 KB
testcase_40 AC 89 ms
6,944 KB
testcase_41 AC 76 ms
6,492 KB
testcase_42 AC 77 ms
6,616 KB
testcase_43 AC 113 ms
10,940 KB
testcase_44 AC 110 ms
10,932 KB
testcase_45 AC 107 ms
10,936 KB
testcase_46 AC 102 ms
9,472 KB
testcase_47 AC 128 ms
10,752 KB
testcase_48 AC 115 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
const int mod = 998244353;
const int Mod = 1000000007;
const long long INF = 1LL << 60;
using ll = long long;
using ld = long double;
#define v2d(type,H,W,name,value) vector<vector<type>> name(H,vector<type>(W,value));

using plli  = pair<ll ,int>;

struct Edge {
  int to;
  ll w;
  Edge(int to, ll w):to(to),w(w) {}
};

using Graph = vector<vector<Edge>>;

template<class T> bool chmin(T& a, T b){
  if (a>b){
    a=b;
    return true;
  }
  else return false;
}
template<class T> bool chmax(T& a, T b){
  if (a<b){
    a=b;
    return true;
  }
  else return false;
}





int main()
{
  int N,M,s;
  cin >> N >> M;
  s=0;

  Graph G(N+10);
  rep(i,M){
    int a,b,w;
    cin >> a >> b >> w;
    a--;b--;
    G[a].push_back(Edge(b,w));
    G[b].push_back(Edge(a,w));
  }

  vector<ll> dist(N+10,0);
  dist[s]=INF;

  //plli : pair<ll ,int>
  priority_queue<plli> que;
  que.push(make_pair(dist[s],s));

  while(!que.empty()){
    int v=que.top().second;
    ll d=que.top().first;
    que.pop();

    if(d<dist[v]) continue;
    //よって d>=dist[v]
    for(auto e:G[v]){
      if(min(e.w,d)>dist[e.to]){
        dist[e.to]=min(e.w,d);
        que.push(make_pair(dist[e.to],e.to));
      }
    }
  }

  cout << dist[N-1] << " ";

  ll max_w=dist[N-1];



  vector<ll> dist2(N,-1);
  dist2[0]=0;
  
  queue<int> que2;
  que2.push(0);

  while(!que2.empty()){

    int qf=que2.front();
    for(Edge e:G[qf]){
      if(e.w<max_w) continue;
      ll x=e.to;
      if(dist2[x]==-1){
        que2.push(x);
        dist2[x]=dist2[qf]+1;
      }
    }
    que2.pop();
  }

  cout << dist2[N-1] << endl;

}
0