結果

問題 No.1473 おでぶなおばけさん
ユーザー umezoumezo
提出日時 2021-04-09 23:18:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,362 ms / 2,000 ms
コード長 1,294 bytes
コンパイル時間 2,762 ms
コンパイル使用メモリ 219,624 KB
実行使用メモリ 13,572 KB
最終ジャッジ日時 2024-06-25 07:11:41
合計ジャッジ時間 22,504 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 930 ms
12,468 KB
testcase_03 AC 526 ms
10,264 KB
testcase_04 AC 519 ms
8,424 KB
testcase_05 AC 144 ms
5,376 KB
testcase_06 AC 692 ms
10,772 KB
testcase_07 AC 1,127 ms
13,228 KB
testcase_08 AC 1,362 ms
13,572 KB
testcase_09 AC 1,017 ms
13,316 KB
testcase_10 AC 96 ms
6,528 KB
testcase_11 AC 96 ms
7,424 KB
testcase_12 AC 96 ms
6,912 KB
testcase_13 AC 57 ms
5,632 KB
testcase_14 AC 42 ms
5,376 KB
testcase_15 AC 80 ms
6,528 KB
testcase_16 AC 93 ms
6,528 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 107 ms
5,664 KB
testcase_20 AC 290 ms
9,820 KB
testcase_21 AC 225 ms
8,896 KB
testcase_22 AC 121 ms
12,028 KB
testcase_23 AC 106 ms
10,676 KB
testcase_24 AC 106 ms
10,712 KB
testcase_25 AC 1,231 ms
12,036 KB
testcase_26 AC 1,232 ms
12,432 KB
testcase_27 AC 225 ms
7,136 KB
testcase_28 AC 870 ms
13,392 KB
testcase_29 AC 365 ms
11,496 KB
testcase_30 AC 614 ms
12,760 KB
testcase_31 AC 658 ms
12,872 KB
testcase_32 AC 365 ms
10,708 KB
testcase_33 AC 319 ms
9,956 KB
testcase_34 AC 178 ms
6,960 KB
testcase_35 AC 112 ms
5,812 KB
testcase_36 AC 322 ms
10,344 KB
testcase_37 AC 579 ms
10,500 KB
testcase_38 AC 67 ms
5,376 KB
testcase_39 AC 95 ms
6,528 KB
testcase_40 AC 95 ms
6,528 KB
testcase_41 AC 80 ms
6,124 KB
testcase_42 AC 81 ms
6,248 KB
testcase_43 AC 247 ms
10,752 KB
testcase_44 AC 244 ms
10,756 KB
testcase_45 AC 245 ms
10,884 KB
testcase_46 AC 602 ms
10,324 KB
testcase_47 AC 721 ms
11,836 KB
testcase_48 AC 629 ms
11,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int INF=1e9+10;

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

using Graph=vector<vector<Edge>>;
using pli=pair<ll,int>;

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

int main(){
  int n,m;
  cin>>n>>m;
  vector<int> S(m),T(m),D(m);
  rep(i,m){
    cin>>S[i]>>T[i]>>D[i];
    S[i]--,T[i]--;
  }
  
  map<ll,ll> ma;
  ll ok=0,ng=1e9+7;
  while(ng-ok>1){
    ll mid=(ok+ng)/2;
    
    Graph G(n);
    rep(i,m){
      if(D[i]<mid) continue;
      G[S[i]].push_back(Edge(T[i],1));
      G[T[i]].push_back(Edge(S[i],1));
    }
  
    vector<ll> dist(n,INF);
    int s=0;
    dist[s]=0;
  
    priority_queue<pli,vector<pli>,greater<pli>> que;
    que.push({dist[s],s});
  
    while(!que.empty()){
      int v=que.top().second;
      ll d=que.top().first;
      que.pop();
    
      if(d>dist[v]) continue;
    
      for(auto e:G[v]){
        if(chmin(dist[e.to],dist[v]+e.w)){
          que.push({dist[e.to],e.to});
        }
      }
    }
    ma[mid]=dist[n-1];
    if(dist[n-1]==INF) ng=mid;
    else ok=mid;
  }
  cout<<ok<<" "<<ma[ok]<<endl;

  return 0;
}
0