# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
567214 | birthdaycake | Bitaro’s Party (JOI18_bitaro) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
#define mod 1000000007
#define boost ios_base::sync_with_stdio(false), cin.tie(NULL);
using namespace std;
vector<int>adj[200001],radj[200001];
int no[200001],dis[200001];
signed main(){
boost;
int n,m,q; cin >> n >> m >> q;
for(int i = 0; i < m; i++){
int a,b; cin >> a >> b;
adj[a].push_back(b);
radj[b].push_back(a);
}
while(q--){
int t,y, ans = -1; cin >> t >> y;
for(int i = 1; i <= n; i++) {
no[i] = 0;
dis[i] = 0;
}
for(int i = 0; i < y; i++){
int x; cin >> x;
no[x] = 1;
}
queue<int>x;
x.push(t);
while(x.size()){
auto s = x.front();
x.pop();
if(!no[s]) ans = max(ans,dis[s]);
for(auto e:radj[s]){
if(dis[e] == 0){
dis[e] = dis[s] + 1;
x.push(e);
}
}
}
cout << ans << endl;
}
return 0;
}
v