結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | ysystem7 |
提出日時 | 2021-04-10 14:41:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 2,275 bytes |
コンパイル時間 | 3,234 ms |
コンパイル使用メモリ | 222,232 KB |
実行使用メモリ | 11,328 KB |
最終ジャッジ日時 | 2024-06-26 04:06:13 |
合計ジャッジ時間 | 7,995 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 120 ms
11,112 KB |
testcase_03 | AC | 83 ms
10,112 KB |
testcase_04 | AC | 70 ms
7,552 KB |
testcase_05 | AC | 29 ms
6,940 KB |
testcase_06 | AC | 132 ms
10,504 KB |
testcase_07 | AC | 116 ms
11,204 KB |
testcase_08 | AC | 175 ms
11,208 KB |
testcase_09 | AC | 102 ms
11,328 KB |
testcase_10 | AC | 38 ms
7,424 KB |
testcase_11 | AC | 40 ms
8,960 KB |
testcase_12 | AC | 38 ms
8,320 KB |
testcase_13 | AC | 23 ms
6,944 KB |
testcase_14 | AC | 17 ms
6,944 KB |
testcase_15 | AC | 33 ms
7,680 KB |
testcase_16 | AC | 35 ms
6,944 KB |
testcase_17 | AC | 4 ms
6,944 KB |
testcase_18 | AC | 7 ms
6,944 KB |
testcase_19 | AC | 45 ms
7,552 KB |
testcase_20 | AC | 65 ms
9,316 KB |
testcase_21 | AC | 79 ms
9,088 KB |
testcase_22 | AC | 61 ms
10,208 KB |
testcase_23 | AC | 49 ms
9,256 KB |
testcase_24 | AC | 47 ms
9,172 KB |
testcase_25 | AC | 163 ms
9,984 KB |
testcase_26 | AC | 170 ms
10,240 KB |
testcase_27 | AC | 39 ms
6,944 KB |
testcase_28 | AC | 137 ms
11,080 KB |
testcase_29 | AC | 78 ms
9,088 KB |
testcase_30 | AC | 108 ms
10,108 KB |
testcase_31 | AC | 95 ms
11,156 KB |
testcase_32 | AC | 95 ms
10,748 KB |
testcase_33 | AC | 68 ms
9,276 KB |
testcase_34 | AC | 38 ms
6,940 KB |
testcase_35 | AC | 35 ms
6,940 KB |
testcase_36 | AC | 65 ms
8,192 KB |
testcase_37 | AC | 87 ms
8,892 KB |
testcase_38 | AC | 13 ms
6,940 KB |
testcase_39 | AC | 35 ms
6,944 KB |
testcase_40 | AC | 35 ms
6,944 KB |
testcase_41 | AC | 35 ms
6,940 KB |
testcase_42 | AC | 34 ms
6,940 KB |
testcase_43 | AC | 42 ms
8,708 KB |
testcase_44 | AC | 42 ms
8,708 KB |
testcase_45 | AC | 41 ms
8,576 KB |
testcase_46 | AC | 75 ms
8,832 KB |
testcase_47 | AC | 96 ms
10,020 KB |
testcase_48 | AC | 88 ms
9,484 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) #define cinf(n,x) for(int i=0;i<(n);i++)cin>>x[i]; #define ft first #define sc second #define pb push_back #define lb lower_bound #define ub upper_bound #define all(v) (v).begin(),(v).end() #define LB(a,x) lb(all(a),x)-a.begin() #define UB(a,x) ub(all(a),x)-a.begin() #define mod 1000000007 //#define mod 998244353 #define FS fixed<<setprecision(15) using namespace std; typedef long long ll; const double pi=3.141592653589793; template<class T> using V=vector<T>; using P=pair<ll,ll>; typedef unsigned long long ull; typedef long double ldouble; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline void out(T a){ cout << a << '\n'; } void YN(bool ok){if(ok) cout << "Yes" << endl; else cout << "No" << endl;} //void YN(bool ok){if(ok) cout << "YES" << endl; else cout << "NO" << endl;} const ll INF=1e18; const int mx=200005; struct edge{ ll to,cost; }; int main(){ //オーバーフローは大丈夫ですか?? cin.tie(0);ios::sync_with_stdio(false); int n,m; cin>>n>>m; V<V<edge>> G(n); rep(i,m){ ll s,t,d; cin>>s>>t>>d; s--;t--; G[s].pb({t,d}); G[t].pb({s,d}); } ll L=0,R=1000000000+1; ll ans=INF; while(R-L>1){ ll mid=(L+R)/2; V<int> d(n,-1); queue<int> que; que.push(0); d[0]=0; while(que.size()){ int v=que.front(); que.pop(); for(edge e:G[v]){ int nv=e.to; if(d[nv]!=-1) continue; if(mid<=e.cost){ d[nv]=d[v]+1; que.push(nv); } } } if(d[n-1]>=0){ L=mid; ans=d[n-1]; }else{ R=mid; } } cout<<L<<' '<<ans<<endl; } //ペナルティ出しても焦らない ACできると信じろ!!! //どうしてもわからないときはサンプルで実験 何か見えてくるかも //頭で考えてダメなら紙におこせ!!