結果
| 問題 |
No.1244 Black Segment
|
| コンテスト | |
| ユーザー |
tute7627
|
| 提出日時 | 2020-02-11 17:22:47 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 74 ms / 2,000 ms |
| コード長 | 1,350 bytes |
| コンパイル時間 | 1,737 ms |
| コンパイル使用メモリ | 178,600 KB |
| 実行使用メモリ | 9,752 KB |
| 最終ジャッジ日時 | 2024-10-08 11:13:59 |
| 合計ジャッジ時間 | 5,066 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define ALL(a) (a).begin(),(a).end()
#define ALLR(a) (a).rbegin(),(a).rend()
#define rep(i,n,m) for(int i = (n); i < (int)(m); i++)
#define rrep(i,n,m) for(int i = (m) - 1; i >= (int)(n); i--)
using ll = long long;
using ld = long double;
const ll MOD = 1e9+7;
//const ll MOD = 998244353;
const ll INF = 1e9+1;
template<typename T>
bool chmin(T &a,T b){if(a>b){a=b;return true;}else return false;}
template<typename T>
bool chmax(T &a,T b){if(a<b){a=b;return true;}else return false;}
template<typename T>
vector<ll>dx={1,0,-1,0,1,1,-1,-1};
vector<ll>dy={0,1,0,-1,1,-1,1,-1};
template<typename T>
vector<T> make_v(size_t a,T b){return vector<T>(a,b);}
template<typename... Ts>
auto make_v(size_t a,Ts... ts){
return vector<decltype(make_v(ts...))>(a,make_v(ts...));
}
int main(){
int n,m,a,b;cin>>n>>m>>a>>b;
a--;b--;
vector<vector<int>>g(n+1);
rep(i,0,m){
int l,r;
cin>>l>>r;
l--;
g[l].push_back(r);
g[r].push_back(l);
}
queue<pair<int,int>>que;
vector<bool>used(n+1);
int res=-1;
rep(i,0,a+1)que.emplace(i,0);
while(!que.empty()){
auto now=que.front();
que.pop();
if(now.first>=b+1){
res=now.second;
break;
}
if(used[now.first])continue;
used[now.first]=true;
for(auto to:g[now.first]){
que.emplace(to,now.second+1);
}
}
cout<<res<<endl;
return 0;
}
tute7627