結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | snow39 |
提出日時 | 2021-04-09 21:51:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,271 bytes |
コンパイル時間 | 1,493 ms |
コンパイル使用メモリ | 127,052 KB |
実行使用メモリ | 11,884 KB |
最終ジャッジ日時 | 2024-06-25 05:07:31 |
合計ジャッジ時間 | 5,288 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 72 ms
11,236 KB |
testcase_03 | AC | 57 ms
9,576 KB |
testcase_04 | AC | 38 ms
7,784 KB |
testcase_05 | AC | 14 ms
6,940 KB |
testcase_06 | AC | 61 ms
9,576 KB |
testcase_07 | AC | 78 ms
11,808 KB |
testcase_08 | AC | 78 ms
11,884 KB |
testcase_09 | AC | 77 ms
11,880 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 42 ms
6,940 KB |
testcase_13 | AC | 27 ms
6,940 KB |
testcase_14 | AC | 20 ms
6,940 KB |
testcase_15 | AC | 36 ms
6,940 KB |
testcase_16 | AC | 40 ms
6,940 KB |
testcase_17 | AC | 5 ms
6,944 KB |
testcase_18 | AC | 6 ms
6,940 KB |
testcase_19 | AC | 35 ms
6,940 KB |
testcase_20 | AC | 47 ms
8,808 KB |
testcase_21 | WA | - |
testcase_22 | AC | 59 ms
10,860 KB |
testcase_23 | AC | 51 ms
10,388 KB |
testcase_24 | AC | 49 ms
9,708 KB |
testcase_25 | AC | 63 ms
10,604 KB |
testcase_26 | AC | 63 ms
10,472 KB |
testcase_27 | AC | 21 ms
6,944 KB |
testcase_28 | AC | 72 ms
11,628 KB |
testcase_29 | AC | 45 ms
7,000 KB |
testcase_30 | AC | 54 ms
7,640 KB |
testcase_31 | WA | - |
testcase_32 | AC | 46 ms
9,576 KB |
testcase_33 | AC | 38 ms
8,584 KB |
testcase_34 | WA | - |
testcase_35 | AC | 22 ms
6,940 KB |
testcase_36 | AC | 41 ms
7,396 KB |
testcase_37 | AC | 51 ms
9,964 KB |
testcase_38 | AC | 11 ms
6,944 KB |
testcase_39 | AC | 41 ms
6,940 KB |
testcase_40 | AC | 41 ms
6,940 KB |
testcase_41 | AC | 39 ms
6,944 KB |
testcase_42 | AC | 39 ms
6,944 KB |
testcase_43 | AC | 42 ms
8,552 KB |
testcase_44 | AC | 42 ms
8,680 KB |
testcase_45 | AC | 42 ms
8,680 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) #define all(v) v.begin(),v.end() using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} class DisjointSet{ public: int N; vector<int> rank,p; vector<int> sz; DisjointSet(){} DisjointSet(int n):N(n),rank(n),p(n),sz(n){ for(int i=0;i<N;i++) makeSet(i); } void makeSet(int x){ p[x]=x; rank[x]=0; sz[x]=1; } bool same(int x,int y){ return leader(x)==leader(y); } void unite(int x,int y){ if(same(x,y)) return; link(leader(x),leader(y)); } void link(int x,int y){ if(rank[x]>rank[y]) swap(x,y); p[x]=y; sz[y]+=sz[x]; if(rank[x]==rank[y]){ ++rank[y]; } } int leader(int x){ if(x!=p[x]) p[x]=leader(p[x]); return p[x]; } int size(int x){ return sz[leader(x)]; } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N,M; cin>>N>>M; vector<tuple<int,int,int>> edges; rep(i,M){ int a,b,c; cin>>a>>b>>c; a--;b--; edges.push_back(mkt(a,b,c)); } vector<int> ord(M,0); rep(i,M) ord[i]=i; sort(all(ord),[&](int a,int b){ if(get<2>(edges[a])!=get<2>(edges[b])) return get<2>(edges[a]) > get<2>(edges[b]); return a<b; }); DisjointSet us(N); vector<vector<int>> g(N); int lastCost=-1; rep(i,N){ int now=ord[i]; auto [a,b,c]=edges[now]; us.unite(a,b); g[a].push_back(b); g[b].push_back(a); if(us.same(0,N-1)){ lastCost=c; break; } } for(auto i:ord){ auto [a,b,c]=edges[i]; if(c==lastCost){ g[a].push_back(b); g[b].push_back(a); } } queue<int> Q; vector<int> dist(N,MOD); dist[0]=0; Q.push(0); while(!Q.empty()){ int now=Q.front(); Q.pop(); for(auto nex:g[now]){ if(dist[nex]==MOD){ dist[nex]=dist[now]+1; Q.push(nex); } } } cout<<lastCost<<" "<<dist[N-1]<<endl; return 0; }