結果

問題 No.1473 おでぶなおばけさん
ユーザー saxofone111saxofone111
提出日時 2021-04-14 21:12:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 1,919 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 214,240 KB
実行使用メモリ 13,364 KB
最終ジャッジ日時 2024-06-30 20:04:21
合計ジャッジ時間 14,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 483 ms
12,844 KB
testcase_03 AC 205 ms
11,664 KB
testcase_04 AC 272 ms
8,524 KB
testcase_05 AC 90 ms
6,944 KB
testcase_06 AC 375 ms
11,300 KB
testcase_07 AC 354 ms
13,364 KB
testcase_08 AC 641 ms
13,240 KB
testcase_09 AC 294 ms
13,180 KB
testcase_10 AC 97 ms
7,424 KB
testcase_11 AC 99 ms
8,960 KB
testcase_12 AC 96 ms
8,320 KB
testcase_13 AC 57 ms
6,940 KB
testcase_14 AC 43 ms
6,944 KB
testcase_15 AC 82 ms
7,680 KB
testcase_16 AC 89 ms
7,040 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 105 ms
7,808 KB
testcase_20 AC 139 ms
10,572 KB
testcase_21 AC 200 ms
9,784 KB
testcase_22 AC 147 ms
11,008 KB
testcase_23 AC 123 ms
10,112 KB
testcase_24 AC 121 ms
9,736 KB
testcase_25 AC 446 ms
11,312 KB
testcase_26 AC 430 ms
11,628 KB
testcase_27 AC 82 ms
6,940 KB
testcase_28 AC 536 ms
12,340 KB
testcase_29 AC 257 ms
9,964 KB
testcase_30 AC 295 ms
11,132 KB
testcase_31 AC 287 ms
12,892 KB
testcase_32 AC 239 ms
11,648 KB
testcase_33 AC 196 ms
10,368 KB
testcase_34 AC 87 ms
6,940 KB
testcase_35 AC 96 ms
7,040 KB
testcase_36 AC 179 ms
8,736 KB
testcase_37 AC 345 ms
10,168 KB
testcase_38 AC 40 ms
6,944 KB
testcase_39 AC 91 ms
6,944 KB
testcase_40 AC 90 ms
7,040 KB
testcase_41 AC 88 ms
6,940 KB
testcase_42 AC 88 ms
6,940 KB
testcase_43 AC 167 ms
10,800 KB
testcase_44 AC 167 ms
10,676 KB
testcase_45 AC 168 ms
10,672 KB
testcase_46 AC 139 ms
9,472 KB
testcase_47 AC 167 ms
10,768 KB
testcase_48 AC 166 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#define MOD 1000000007
#define rep(i, n) for(ll i=0; i < (n); i++)
#define rrep(i, n) for(ll i=(n)-1; i >=0; i--)
#define ALL(v) v.begin(),v.end()
#define rALL(v) v.rbegin(),v.rend()
#define FOR(i, j, k) for(ll i=j;i<k;i++)
#define debug_print(var) cerr << #var << "=" << var <<endl;
#define DUMP(i, v)for(ll i=0;i<v.size();i++)cerr<<v[i]<<" "
#define fi first
#define se second

using namespace std;
typedef long long int ll;
typedef vector<ll> llvec;
typedef vector<double> dvec;
typedef pair<ll, ll> P;
typedef long double ld;
struct edge{ll x, c;};

ll W;

struct dijkstra{
  ll N;
  llvec d;
  vector<vector<edge>> e;
  dijkstra(ll n){
    N = n;
    //d = llvec(N, 1e18);
    e = vector<vector<edge>>(N);
  }

  void add_edge(ll from, ll to, ll cost){
    e[from].push_back({to, cost});
  }

  void run(ll start){
    priority_queue<P, vector<P>, greater<P>> que;
    que.push({0, start});
    d = llvec(N, 1e18);
    d[start]=0;
    while(!que.empty()){
      P q = que.top();que.pop();
      ll dc = q.first;
      ll x = q.second;
      if(dc>d[x]){
        continue;
      }else{
        for(auto ip: e[x]){
          if(W>ip.c)continue;
          if(d[ip.x]<=d[x]+1){
            continue;
          }else{
            d[ip.x]= d[x]+1;
            que.push({d[ip.x], ip.x});
          }
        }
      }
    }
  }  
};



/**************************************
** A main function starts from here  **
***************************************/
int main(){
  ll N, M;
  cin >> N >> M;
  dijkstra dijk(N);
  rep(i, M){
    ll a, b, c;
    cin >> a >> b >> c;
    a--;b--;
    dijk.add_edge(a, b, c);
    dijk.add_edge(b, a, c);
  }

  ll ok = 0;
  ll ng = 1e18;
  while(abs(ok-ng)>1){
    W =(ok+ng)/2;
    dijk.run(0);
    if(dijk.d[N-1]<1e18){
      ok = W;
    }else{
      ng = W;
    }
  }

  W = ok;
  dijk.run(0);
  cout << W << " " << dijk.d.back()<<endl;
  
  
  return 0;
}
0