結果

問題 No.1565 Union
ユーザー kotatsugamekotatsugame
提出日時 2021-06-29 20:11:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-06-25 22:36:15
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,600 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 6 ms
9,600 KB
testcase_03 AC 6 ms
9,728 KB
testcase_04 AC 6 ms
9,472 KB
testcase_05 AC 6 ms
9,584 KB
testcase_06 AC 6 ms
9,588 KB
testcase_07 AC 5 ms
9,472 KB
testcase_08 AC 7 ms
9,600 KB
testcase_09 AC 6 ms
9,600 KB
testcase_10 AC 73 ms
11,264 KB
testcase_11 AC 127 ms
14,208 KB
testcase_12 AC 137 ms
12,672 KB
testcase_13 AC 47 ms
10,984 KB
testcase_14 AC 167 ms
13,952 KB
testcase_15 AC 221 ms
16,128 KB
testcase_16 AC 206 ms
15,916 KB
testcase_17 AC 218 ms
16,000 KB
testcase_18 AC 225 ms
16,128 KB
testcase_19 AC 217 ms
16,012 KB
testcase_20 AC 146 ms
16,512 KB
testcase_21 AC 146 ms
16,640 KB
testcase_22 AC 146 ms
16,600 KB
testcase_23 AC 146 ms
16,512 KB
testcase_24 AC 145 ms
16,512 KB
testcase_25 AC 149 ms
16,640 KB
testcase_26 AC 145 ms
16,552 KB
testcase_27 AC 147 ms
16,504 KB
testcase_28 AC 147 ms
16,640 KB
testcase_29 AC 148 ms
16,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
int N,M;
vector<int>G[2<<17];
int dist[2<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	for(int i=1;i<N;i++)dist[i]=M+1;
	queue<int>P;
	P.push(0);
	while(!P.empty())
	{
		int u=P.front();P.pop();
		for(int v:G[u])if(dist[v]>dist[u]+1)
		{
			dist[v]=dist[u]+1;
			P.push(v);
		}
	}
	if(dist[N-1]==M+1)cout<<-1<<endl;
	else cout<<dist[N-1]<<endl;
}
0