結果

問題 No.1244 Black Segment
ユーザー publflpublfl
提出日時 2020-10-02 22:55:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 55,808 KB
実行使用メモリ 9,212 KB
最終ジャッジ日時 2024-07-17 22:57:40
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 25 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 24 ms
7,936 KB
testcase_19 AC 36 ms
8,064 KB
testcase_20 AC 34 ms
8,448 KB
testcase_21 AC 39 ms
8,448 KB
testcase_22 AC 38 ms
8,576 KB
testcase_23 AC 39 ms
8,576 KB
testcase_24 AC 41 ms
8,576 KB
testcase_25 AC 40 ms
8,576 KB
testcase_26 AC 38 ms
8,576 KB
testcase_27 AC 41 ms
8,880 KB
testcase_28 AC 44 ms
8,704 KB
testcase_29 AC 39 ms
8,704 KB
testcase_30 AC 43 ms
8,576 KB
testcase_31 AC 39 ms
8,704 KB
testcase_32 AC 42 ms
8,692 KB
testcase_33 AC 40 ms
8,692 KB
testcase_34 AC 40 ms
8,832 KB
testcase_35 AC 39 ms
9,088 KB
testcase_36 AC 40 ms
9,088 KB
testcase_37 AC 43 ms
8,992 KB
testcase_38 AC 39 ms
9,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <queue>
#define MAX 123456789
int dist[100010];
std::vector<int> V[100010];
std::queue<int> Q;
int main()
{
	int a,b,c,d;
	scanf("%d%d%d%d",&a,&b,&c,&d);
	for(int i=1;i<=a+1;i++) dist[i] = MAX;
	for(int i=1;i<=b;i++)
	{
		int e,f;
		scanf("%d%d",&e,&f);
		V[e].push_back(f+1);
		V[f+1].push_back(e);
	}
	for(int i=d+1;i<=a+1;i++)
	{
		dist[i] = 0;
		Q.push(i);
	}
	while(!Q.empty())
	{
		int k = Q.front();
		Q.pop();
		
		for(int i=0;i<V[k].size();i++)
		{
			if(dist[V[k][i]]==MAX)
			{
				dist[V[k][i]] = dist[k]+1;
				Q.push(V[k][i]);
			}
		}
	}
	
	int ans = MAX;
	for(int i=1;i<=c;i++) ans = ans<dist[i]?ans:dist[i];
	if(ans==MAX) printf("-1");
	else printf("%d",ans);
}
0