結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | 蜜蜂 |
提出日時 | 2021-04-09 21:44:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 274 ms / 2,000 ms |
コード長 | 1,549 bytes |
コンパイル時間 | 4,176 ms |
コンパイル使用メモリ | 240,992 KB |
実行使用メモリ | 11,756 KB |
最終ジャッジ日時 | 2024-06-25 04:51:03 |
合計ジャッジ時間 | 9,857 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 180 ms
10,604 KB |
testcase_03 | AC | 84 ms
8,684 KB |
testcase_04 | AC | 75 ms
7,144 KB |
testcase_05 | AC | 31 ms
6,940 KB |
testcase_06 | AC | 105 ms
8,808 KB |
testcase_07 | AC | 114 ms
10,724 KB |
testcase_08 | AC | 119 ms
10,644 KB |
testcase_09 | AC | 112 ms
10,660 KB |
testcase_10 | AC | 37 ms
6,940 KB |
testcase_11 | AC | 37 ms
6,944 KB |
testcase_12 | AC | 37 ms
6,940 KB |
testcase_13 | AC | 24 ms
6,940 KB |
testcase_14 | AC | 18 ms
6,944 KB |
testcase_15 | AC | 31 ms
6,944 KB |
testcase_16 | AC | 35 ms
6,944 KB |
testcase_17 | AC | 4 ms
6,940 KB |
testcase_18 | AC | 6 ms
6,940 KB |
testcase_19 | AC | 42 ms
6,940 KB |
testcase_20 | AC | 58 ms
8,040 KB |
testcase_21 | AC | 101 ms
7,272 KB |
testcase_22 | AC | 152 ms
10,728 KB |
testcase_23 | AC | 121 ms
9,316 KB |
testcase_24 | AC | 121 ms
9,836 KB |
testcase_25 | AC | 234 ms
11,756 KB |
testcase_26 | AC | 246 ms
11,756 KB |
testcase_27 | AC | 43 ms
6,940 KB |
testcase_28 | AC | 89 ms
10,468 KB |
testcase_29 | AC | 68 ms
6,944 KB |
testcase_30 | AC | 76 ms
7,272 KB |
testcase_31 | AC | 274 ms
11,496 KB |
testcase_32 | AC | 78 ms
8,808 KB |
testcase_33 | AC | 107 ms
8,300 KB |
testcase_34 | AC | 60 ms
6,944 KB |
testcase_35 | AC | 43 ms
6,940 KB |
testcase_36 | AC | 104 ms
8,424 KB |
testcase_37 | AC | 133 ms
8,812 KB |
testcase_38 | AC | 24 ms
6,944 KB |
testcase_39 | AC | 36 ms
6,940 KB |
testcase_40 | AC | 36 ms
6,940 KB |
testcase_41 | AC | 33 ms
6,944 KB |
testcase_42 | AC | 33 ms
6,940 KB |
testcase_43 | AC | 53 ms
8,808 KB |
testcase_44 | AC | 53 ms
8,680 KB |
testcase_45 | AC | 53 ms
8,808 KB |
testcase_46 | AC | 91 ms
7,916 KB |
testcase_47 | AC | 109 ms
8,932 KB |
testcase_48 | AC | 96 ms
8,428 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:49:11: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 49 | auto[a,b,c]=g[i]; | ^ main.cpp:65:9: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 65 | auto[a,b,c]=g[i]; | ^ main.cpp:78:9: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 78 | auto[now,time]=que.top(); | ^
ソースコード
//g++ 4.cpp -std=c++14 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; #define fi first #define se second #define pb push_back #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) using T = tuple<int,int,ll>; using P = pair<int,int>; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,m; cin>>n>>m; vector<T> g; rep(i,0,m){ int s,t; ll d; cin>>s>>t>>d; s--;t--; g.pb({s,t,d}); } ll ng=1e18,ok=0; while(ng-ok>1){ ll check=(ng+ok)/2; dsu d(n); rep(i,0,m){ auto[a,b,c]=g[i]; if(c>=check){ d.merge(a,b); } } if(d.same(0,n-1)==true){ ok=check; } else{ ng=check; } } vvi graph(n); rep(i,0,m){ auto[a,b,c]=g[i]; if(c>=ok){ graph[a].pb(b); graph[b].pb(a); } } priority_queue<P,vector<P>,greater<P>> que; vi dist(n,1e6); que.push({0,0}); dist[0]=0; while(!que.empty()){ auto[now,time]=que.top(); que.pop(); if(time>dist[now])continue; for(int next:graph[now]){ if(dist[next]>dist[now]+1){ dist[next]=dist[now]+1; que.push({next,dist[now]+1}); } } } cout<<ok<<" "<<dist[n-1]<<endl; }