This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
using namespace std;
#define ll long long int
#define oo 1e18 + 5
#define pii pair<int, int>
const int MAX = 1005;
bool visited[MAX];
set<int> g[MAX];
bitset<MAX> accesible[MAX];
void dfs(int node, int par){
visited[node] = true;
accesible[par][node] = true;
accesible[node][par] = true;
for(int to : g[node]){
if(!visited[to]){
dfs(to, node);
accesible[node] |= accesible[to];
accesible[to] = accesible[node];
}
}
}
int main(){
int n, m, q; cin >> n >> m >> q;
for (int i = 1; i <= m; i++)
{
for (int j = 1; j <= n; j++)
{
int a; cin >> a;
g[j].insert(a);
g[a].insert(j);
}
}
for (int i = 1; i <= n; i++)
{
if(!visited[i]){
dfs(i, i);
}
}
while(q--){
int a, b; cin >> a >> b;
if(accesible[a][b]){
cout << "DA\n";
}
else{
cout << "NE\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... |