이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define no cout << "NO\n"
#define yes cout << "YES\n"
#define endl '\n'
#define pb push_back
using namespace std ;
//fflush(stdout) ;
const int Max_n=1e5+10 ;
vector<int>v[Max_n] ;
int c[Max_n] ;
int ans=0 ;
void dfs(int x , int r){
if(c[x]==0) ans=max(ans,r) ;
for(int i:v[x]){
dfs(i,r+1) ;
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
int n , m , q ; cin >> n >> m >> q ;
for(int i=0 ; i<m ; i++){
int a , e ; cin >> a >> e ;
v[max(a,e)].pb(min(a,e)) ;
}
while(q--){
int t , y ; cin >> t >> y ;
for(int i=0 ; i<y ; i++){
int a ; cin >> a ;
c[a]=1 ;
}
ans=-1 ;
dfs(t , 0) ;
cout << ans << endl ;
//for(int i=1 ; i<=n ; i++) c[i]=0 ;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |