結果
問題 | No.1565 Union |
ユーザー | ytqm3 |
提出日時 | 2021-06-26 14:31:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 219 ms / 2,000 ms |
コード長 | 2,161 bytes |
コンパイル時間 | 2,286 ms |
コンパイル使用メモリ | 208,620 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-06-25 10:33:48 |
合計ジャッジ時間 | 6,617 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 66 ms
5,376 KB |
testcase_11 | AC | 126 ms
11,648 KB |
testcase_12 | AC | 129 ms
6,944 KB |
testcase_13 | AC | 38 ms
5,504 KB |
testcase_14 | AC | 159 ms
9,984 KB |
testcase_15 | AC | 214 ms
14,336 KB |
testcase_16 | AC | 199 ms
14,268 KB |
testcase_17 | AC | 214 ms
14,336 KB |
testcase_18 | AC | 219 ms
14,336 KB |
testcase_19 | AC | 213 ms
14,464 KB |
testcase_20 | AC | 146 ms
14,976 KB |
testcase_21 | AC | 146 ms
14,920 KB |
testcase_22 | AC | 145 ms
14,976 KB |
testcase_23 | AC | 146 ms
15,104 KB |
testcase_24 | AC | 146 ms
14,952 KB |
testcase_25 | AC | 146 ms
14,848 KB |
testcase_26 | AC | 145 ms
14,948 KB |
testcase_27 | AC | 147 ms
14,924 KB |
testcase_28 | AC | 149 ms
14,976 KB |
testcase_29 | AC | 146 ms
14,976 KB |
ソースコード
#include<bits/stdc++.h> typedef uint64_t u64; typedef int64_t i64; typedef long double f128; using namespace std; template<typename T> void scan(T& n){ cin>>n; } void scan(){} template<typename T,class... Args> void scan(T& n,Args&... args){ scan(n); scan(args...); } template<typename T> void scanall(T start,T end){ for(;start!=end;++start){ scan(*start); } } template<typename T> void print(T n){ cout<<n; } void print(){} template<typename T,class... Args> void print(T n,Args... args){ print(n); print(args...); } template<typename T> void println(T n){ print(n); cout<<endl; } template<typename T,class... Args> void println(T n,Args... args){ print(n,' '); println(args...); } template<typename T> void printall(T start,T end){ if(start!=end){ print(*start); for(++start;start!=end;++start){ print(' ',*start); } } cout<<endl; } template<typename T> void chmax(T& n,T m){ n=max(n,m); } template<typename T> void chmin(T& n,T m){ n=min(n,m); } template<typename T,typename U> T power(T a,U n){ T res=1; while(n){ res*=(n&1)?a:1; a*=a; n>>=1; } return res; } template<typename T> struct combination{ vector<T> fact; combination(const int Max=3000000):fact(Max+1,1){ for(int i=2;i<=Max;++i){ fact[i]=fact[i-1]*i; } } template<typename U> T nCk(U n,U k){ if(n<k||n<0||k<0){ return 0; } return fact[n]/fact[k]/fact[n-k]; } }; void solve(); int main(){ cout<<fixed<<setprecision(15); bool is_multicase=false; int T=1; if(is_multicase){ scan(T); } for(int i=0;i<T;++i){ solve(); } return 0; } int BFS(int N,vector<vector<int>>& G){ vector<int> cost(N,-1); cost[0]=0; queue<int> que; que.push(0); while(que.size()){ int x=que.front(); que.pop(); for(auto v:G[x]){ if(cost[v]==-1){ cost[v]=cost[x]+1; que.push(v); } } } return cost[N-1]; } void solve(){ int N,M; scan(N,M); vector<vector<int>> G(N); for(int i=0;i<M;++i){ int a,b; scan(a,b); a--,b--; G[a].push_back(b); G[b].push_back(a); } println(BFS(N,G)); }