結果

問題 No.1244 Black Segment
ユーザー rabimearabimea
提出日時 2023-01-25 03:01:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 3,022 ms
コンパイル使用メモリ 206,564 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-06-26 10:08:19
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 4 ms
5,760 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,760 KB
testcase_07 AC 4 ms
5,888 KB
testcase_08 AC 3 ms
5,888 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 4 ms
5,760 KB
testcase_11 AC 4 ms
5,760 KB
testcase_12 AC 4 ms
5,760 KB
testcase_13 AC 5 ms
5,888 KB
testcase_14 AC 27 ms
7,040 KB
testcase_15 AC 5 ms
5,888 KB
testcase_16 AC 27 ms
7,040 KB
testcase_17 AC 5 ms
5,888 KB
testcase_18 AC 30 ms
8,192 KB
testcase_19 AC 41 ms
8,576 KB
testcase_20 AC 49 ms
8,960 KB
testcase_21 AC 49 ms
8,960 KB
testcase_22 AC 47 ms
8,960 KB
testcase_23 AC 52 ms
9,088 KB
testcase_24 AC 47 ms
9,088 KB
testcase_25 AC 51 ms
9,056 KB
testcase_26 AC 47 ms
8,960 KB
testcase_27 AC 51 ms
9,216 KB
testcase_28 AC 48 ms
9,156 KB
testcase_29 AC 50 ms
9,036 KB
testcase_30 AC 51 ms
9,216 KB
testcase_31 AC 52 ms
9,216 KB
testcase_32 AC 54 ms
9,216 KB
testcase_33 AC 50 ms
9,412 KB
testcase_34 AC 55 ms
9,728 KB
testcase_35 AC 55 ms
9,600 KB
testcase_36 AC 56 ms
9,600 KB
testcase_37 AC 51 ms
9,672 KB
testcase_38 AC 56 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
#define fi first
#define se second
#define pb push_back
using vi = vector <int>;
using ll = long long;
using pii = pair <int, int>;
//~ const ll mod = 998244353;
const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

const int N = 1e5 + 11;
vi e[N];

int dis[N];
const int inf = 1e9;

int main() {
	ios :: sync_with_stdio(false);
	
	int n, m; cin >> n >> m;
	int a, b; cin >> a >> b;
	for(int i = 0; i < m; i ++) {
		int l, r; cin >> l >> r;
		e[l - 1].pb(r);
		e[r].pb(l - 1);
	}
	
	int S = n + 1, T = n + 2;
	for(int i = 0; i < a; i ++)
		e[S].pb(i);
	for(int i = b; i <= n; i ++)
		e[i].pb(T);
	
	fill(dis, dis + T + 1, inf);
	queue <int> q; q.push(S);
	dis[S] = 0;
	
	while(!q.empty()) {
		int x = q.front(); q.pop();
		for(int i : e[x])
			if(dis[i] == inf) {
				dis[i] = dis[x] + 1;
				q.push(i);
			}
	}
	
	int ans = (dis[T] == inf ? -1 : dis[T] - 2);
	cout << ans << '\n';
}
0