結果

問題 No.1244 Black Segment
ユーザー kotatsugamekotatsugame
提出日時 2020-10-02 21:56:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 76,328 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-07-16 04:57:21
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 51 ms
7,784 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 52 ms
7,956 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 44 ms
8,880 KB
testcase_19 AC 66 ms
9,216 KB
testcase_20 AC 70 ms
9,696 KB
testcase_21 AC 64 ms
9,668 KB
testcase_22 AC 69 ms
9,588 KB
testcase_23 AC 70 ms
9,572 KB
testcase_24 AC 70 ms
9,652 KB
testcase_25 AC 69 ms
9,524 KB
testcase_26 AC 65 ms
9,676 KB
testcase_27 AC 70 ms
10,060 KB
testcase_28 AC 68 ms
9,924 KB
testcase_29 AC 68 ms
9,732 KB
testcase_30 AC 70 ms
9,600 KB
testcase_31 AC 74 ms
9,704 KB
testcase_32 AC 76 ms
9,812 KB
testcase_33 AC 74 ms
9,796 KB
testcase_34 AC 76 ms
9,600 KB
testcase_35 AC 72 ms
10,184 KB
testcase_36 AC 73 ms
10,180 KB
testcase_37 AC 72 ms
10,240 KB
testcase_38 AC 78 ms
10,076 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,A,B;
vector<int>G[1<<17];
int vis[1<<17];
main()
{
	cin>>N>>M>>A>>B;
	for(int i=0;i<=N;i++)vis[i]=1e9;
	A--;
	for(;M--;)
	{
		int l,r;cin>>l>>r;
		l--;
		G[l].push_back(r);
		G[r].push_back(l);
	}
	queue<int>P;
	for(int i=0;i<=A;i++)
	{
		P.push(i);
		vis[i]=0;
	}
	while(!P.empty())
	{
		int u=P.front();P.pop();
		for(int v:G[u])if(vis[v]>vis[u]+1)
		{
			vis[v]=vis[u]+1;
			P.push(v);
		}
	}
	int ans=1e9;
	for(int i=B;i<=N;i++)if(ans>vis[i])ans=vis[i];
	cout<<(ans==(int)1e9?-1:ans)<<endl;
}
0