結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1,009 ms
12,464 KB
testcase_03 AC 493 ms
10,264 KB
testcase_04 AC 499 ms
8,412 KB
testcase_05 AC 143 ms
6,940 KB
testcase_06 AC 629 ms
10,768 KB
testcase_07 AC 933 ms
13,316 KB
testcase_08 AC 1,239 ms
13,576 KB
testcase_09 AC 901 ms
13,228 KB
testcase_10 AC 96 ms
6,944 KB
testcase_11 AC 94 ms
7,424 KB
testcase_12 AC 96 ms
6,944 KB
testcase_13 AC 58 ms
6,944 KB
testcase_14 AC 42 ms
6,944 KB
testcase_15 AC 79 ms
6,944 KB
testcase_16 AC 92 ms
6,944 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 105 ms
6,944 KB
testcase_20 AC 256 ms
9,820 KB
testcase_21 AC 229 ms
8,896 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,188 ms
12,032 KB
testcase_26 AC 1,281 ms
12,440 KB
testcase_27 AC 232 ms
7,132 KB
testcase_28 AC 903 ms
13,396 KB
testcase_29 AC 358 ms
11,500 KB
testcase_30 AC 595 ms
12,764 KB
testcase_31 AC 576 ms
12,868 KB
testcase_32 AC 358 ms
10,708 KB
testcase_33 AC 312 ms
9,956 KB
testcase_34 AC 174 ms
6,944 KB
testcase_35 AC 107 ms
6,944 KB
testcase_36 AC 347 ms
10,348 KB
testcase_37 AC 522 ms
10,496 KB
testcase_38 AC 69 ms
6,940 KB
testcase_39 AC 93 ms
6,940 KB
testcase_40 AC 93 ms
6,944 KB
testcase_41 AC 80 ms
6,940 KB
testcase_42 AC 79 ms
6,940 KB
testcase_43 AC 247 ms
10,740 KB
testcase_44 AC 247 ms
10,740 KB
testcase_45 AC 248 ms
10,736 KB
testcase_46 AC 514 ms
10,328 KB
testcase_47 AC 672 ms
11,840 KB
testcase_48 AC 606 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 ll INF=1LL<<60;

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<int,int> ma;
  int ok=1,ng=1e9+1;
  while(ng-ok>1){
    int 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