結果

問題 No.1473 おでぶなおばけさん
ユーザー abc3abc3
提出日時 2021-04-10 03:35:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,445 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 211,812 KB
実行使用メモリ 11,820 KB
最終ジャッジ日時 2024-06-25 16:53:47
合計ジャッジ時間 10,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 192 ms
11,472 KB
testcase_03 AC 149 ms
10,368 KB
testcase_04 AC 117 ms
7,860 KB
testcase_05 AC 45 ms
6,944 KB
testcase_06 AC 205 ms
10,852 KB
testcase_07 AC 210 ms
11,816 KB
testcase_08 AC 270 ms
11,696 KB
testcase_09 AC 186 ms
11,820 KB
testcase_10 AC 98 ms
7,424 KB
testcase_11 AC 99 ms
8,960 KB
testcase_12 AC 98 ms
8,320 KB
testcase_13 AC 58 ms
6,944 KB
testcase_14 AC 43 ms
6,944 KB
testcase_15 AC 82 ms
7,680 KB
testcase_16 AC 92 ms
6,944 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 14 ms
6,940 KB
testcase_19 AC 87 ms
7,680 KB
testcase_20 AC 116 ms
9,536 KB
testcase_21 AC 136 ms
9,300 KB
testcase_22 AC 105 ms
10,492 KB
testcase_23 AC 82 ms
9,488 KB
testcase_24 AC 88 ms
9,388 KB
testcase_25 AC 244 ms
10,528 KB
testcase_26 AC 249 ms
10,624 KB
testcase_27 AC 69 ms
6,944 KB
testcase_28 AC 221 ms
11,572 KB
testcase_29 AC 143 ms
9,344 KB
testcase_30 AC 187 ms
10,240 KB
testcase_31 AC 164 ms
11,508 KB
testcase_32 AC 154 ms
11,092 KB
testcase_33 AC 119 ms
9,512 KB
testcase_34 AC 62 ms
6,940 KB
testcase_35 AC 65 ms
6,940 KB
testcase_36 AC 114 ms
8,276 KB
testcase_37 AC 146 ms
9,132 KB
testcase_38 AC 26 ms
6,944 KB
testcase_39 AC 95 ms
6,940 KB
testcase_40 AC 93 ms
6,940 KB
testcase_41 AC 83 ms
6,940 KB
testcase_42 AC 83 ms
6,944 KB
testcase_43 AC 102 ms
9,064 KB
testcase_44 AC 101 ms
9,064 KB
testcase_45 AC 102 ms
9,196 KB
testcase_46 AC 126 ms
9,216 KB
testcase_47 AC 163 ms
10,240 KB
testcase_48 AC 148 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    using P=pair<int,int>;
    const ll INF=1e18;
    const int mod=1e9+7;
    
    struct edge{
      int to;
      ll w;
      edge(int to,ll w):to(to),w(w){}
    };
    int main(){
      ll n,m;
      cin>>n>>m;
      vector<vector<edge>>G(n);
      rep(i,m){
        int s,t,d;
        cin>>s>>t>>d;
        s--;t--;
        G[s].push_back(edge(t,d));
        G[t].push_back(edge(s,d));
      }
      auto f=[&](ll W){
        vector<ll>dist(n,INF);
        dist[0]=0;
        queue<ll>q;
        q.push(0);
        while(!q.empty()){
          auto p=q.front();q.pop();
          for(auto u:G[p]){
            if(dist[u.to]==INF&&u.w>=W){
              q.push(u.to);
              dist[u.to]=dist[p]+1;
            }
          }
        }
        return dist[n-1];
      };
      ll l=0,r=1e9+5;
      ll len=INF;
      while(r-l>1){
        ll mid=(l+r)/2;
        ll dist=f(mid);
        if(dist!=INF){l=mid;len=dist;}
        else{r=mid;}
      }
      cout<<l<<" "<<len<<endl;
      return 0;
    }
0