이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
using namespace std;
const int N = 5e3 + 2;
int n, c[N], p[N], sz[N];
bool can[N][N], used[N], vis[N];
vector <int> b[N];
vector < pair <int, int> > pi[N];
int get(int v){
return (p[v] == v ? v : p[v] = get(p[v]));
}
void unite(int a, int b){
a = get(a);
b = get(b);
if(a != b){
if(sz[a] < sz[b]) swap(a, b);
sz[a] += sz[b];
p[b] = a;
}
}
int main(){
cin >> n;
for(int i = 1; i < n; i ++){
cin >> c[i];
pi[c[i]].push_back({i, i + 1});
}
for(int i = 1; i <= n; i ++){
int k, x;
cin >> k;
while(k --){
cin >> x;
b[i].push_back(x);
}
}
for(int i = 1; i <= n; i ++){
for(int j = 1; j <= n; j ++)
used[j] = 0, vis[j] = 0, p[j] = j, sz[j] = 1;
vector <int> vec;
vec.push_back(i);
int mn = i, mx = i;
while(!vec.empty()){
for(int v : vec)
used[v] = 1;
for(int v : vec){
for(int j : b[v]){
if(!vis[j]){
vis[j] = 1;
for(auto l : pi[j]){
unite(l.first, l.second);
}
}
}
}
vector <int> nw;
if(mn - 1 >= 1&& get(mn) == get(mn - 1))
nw.push_back(-- mn);
if(mx + 1 <= n && get(mx) == get(mx + 1))
nw.push_back(++ mx);
vec = nw;
}
for(int j = 1; j <= n; j ++){
can[i][j] = (get(i) == get(j));
}
}
int q;
cin >> q;
while(q --){
int x, y;
cin >> x >> y;
if(can[x][y])
cout << "YES\n";
else
cout << "NO\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |