結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 802 ms
12,468 KB
testcase_03 AC 460 ms
10,260 KB
testcase_04 AC 477 ms
8,544 KB
testcase_05 AC 144 ms
5,376 KB
testcase_06 AC 582 ms
10,772 KB
testcase_07 AC 774 ms
13,444 KB
testcase_08 AC 946 ms
13,568 KB
testcase_09 AC 824 ms
13,324 KB
testcase_10 AC 94 ms
6,528 KB
testcase_11 AC 92 ms
7,552 KB
testcase_12 AC 93 ms
6,912 KB
testcase_13 AC 55 ms
5,632 KB
testcase_14 AC 39 ms
5,376 KB
testcase_15 AC 78 ms
6,656 KB
testcase_16 AC 89 ms
6,528 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 105 ms
5,660 KB
testcase_20 AC 244 ms
9,812 KB
testcase_21 AC 223 ms
8,892 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,087 ms
12,036 KB
testcase_26 AC 1,134 ms
12,436 KB
testcase_27 AC 233 ms
7,128 KB
testcase_28 AC 735 ms
13,528 KB
testcase_29 AC 332 ms
11,444 KB
testcase_30 AC 531 ms
12,764 KB
testcase_31 AC 482 ms
12,872 KB
testcase_32 AC 336 ms
10,708 KB
testcase_33 AC 289 ms
9,956 KB
testcase_34 AC 171 ms
6,968 KB
testcase_35 AC 107 ms
5,820 KB
testcase_36 AC 327 ms
10,476 KB
testcase_37 AC 471 ms
10,500 KB
testcase_38 AC 69 ms
5,376 KB
testcase_39 AC 94 ms
6,528 KB
testcase_40 AC 95 ms
6,528 KB
testcase_41 AC 79 ms
6,124 KB
testcase_42 AC 80 ms
6,124 KB
testcase_43 AC 236 ms
10,760 KB
testcase_44 AC 236 ms
10,752 KB
testcase_45 AC 236 ms
10,760 KB
testcase_46 AC 469 ms
10,324 KB
testcase_47 AC 597 ms
11,840 KB
testcase_48 AC 592 ms
11,208 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<ll,ll> 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