/*
In the name of Allah
made by: Ahmed_Solyman
*/
#include <bits/stdc++.h>
#include <ext/rope>
using namespace std;
using namespace __gnu_cxx;
#pragma GCC optimize("-Ofast")
#pragma GCC optimize("-O1")
//-------------------------------------------------------------//
typedef long long ll;
typedef unsigned long long ull;
#define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define PI acos(-1)
#define lb lower_bound
#define ub upper_bound
#define endl '\n'
#define all(v) v.begin(),v.end()
#define allr(v) v.rbegin(),v.rend()
#define sum_to(n) (n*(n+1))/2
#define pb push_back
#define pf push_front
#define fil(arr,x) memset(arr,x,sizeof(arr))
const ll mod=1e9+7;
int dx[8]={0,1,0,-1,1,1,-1,-1};
int dy[8]={1,0,-1,0,1,-1,-1,1};
//-------------------------------------------------------------//
ll lcm(ll a,ll b)
{
return (max(a,b)/__gcd(a,b))*min(a,b);
}
void person_bool(bool x)
{
cout<<(x?"YES":"NO")<<endl;
}
int main()
{
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
#ifndef ONLINE_JUDGE
//freopen("input.in", "r", stdin);
//freopen("output.out", "w", stdout);
#endif
fast
int n,m,q;cin>>n>>m>>q;
vector<int>adj[n+5];
for(int i=0;i<m;i++){
for(int j=1;j<=n;j++){
int x;cin>>x;
adj[x].push_back(j);
}
}
int vis[n+5]={};
vector<vector<bool>>can(n+5,vector<bool>(n+5));
for(int i=1;i<=n;i++){
queue<int>q;
q.push(i);
fil(vis,0);
while(q.size()){
int x=q.front();
q.pop();
vis[x]=1;
can[x][i]=1;
for(auto ch:adj[x]){
if(!vis[ch]){
q.push(ch);
}
}
}
}
while(q--){
int x,y;cin>>x>>y;
cout<<(can[x][y]?"DA":"NE")<<endl;
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
94 ms |
5740 KB |
Output is correct |
2 |
Correct |
69 ms |
5220 KB |
Output is correct |
3 |
Correct |
70 ms |
4852 KB |
Output is correct |
4 |
Correct |
81 ms |
5968 KB |
Output is correct |
5 |
Correct |
67 ms |
5968 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
17 ms |
564 KB |
Output is correct |
2 |
Correct |
5 ms |
348 KB |
Output is correct |
3 |
Correct |
82 ms |
580 KB |
Output is correct |
4 |
Correct |
39 ms |
348 KB |
Output is correct |
5 |
Correct |
2 ms |
600 KB |
Output is correct |
6 |
Correct |
6 ms |
348 KB |
Output is correct |
7 |
Correct |
51 ms |
348 KB |
Output is correct |
8 |
Correct |
2 ms |
348 KB |
Output is correct |
9 |
Execution timed out |
1105 ms |
195532 KB |
Time limit exceeded |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
17 ms |
564 KB |
Output is correct |
2 |
Correct |
5 ms |
348 KB |
Output is correct |
3 |
Correct |
82 ms |
580 KB |
Output is correct |
4 |
Correct |
39 ms |
348 KB |
Output is correct |
5 |
Correct |
2 ms |
600 KB |
Output is correct |
6 |
Correct |
6 ms |
348 KB |
Output is correct |
7 |
Correct |
51 ms |
348 KB |
Output is correct |
8 |
Correct |
2 ms |
348 KB |
Output is correct |
9 |
Execution timed out |
1105 ms |
195532 KB |
Time limit exceeded |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
94 ms |
5740 KB |
Output is correct |
2 |
Correct |
69 ms |
5220 KB |
Output is correct |
3 |
Correct |
70 ms |
4852 KB |
Output is correct |
4 |
Correct |
81 ms |
5968 KB |
Output is correct |
5 |
Correct |
67 ms |
5968 KB |
Output is correct |
6 |
Correct |
17 ms |
564 KB |
Output is correct |
7 |
Correct |
5 ms |
348 KB |
Output is correct |
8 |
Correct |
82 ms |
580 KB |
Output is correct |
9 |
Correct |
39 ms |
348 KB |
Output is correct |
10 |
Correct |
2 ms |
600 KB |
Output is correct |
11 |
Correct |
6 ms |
348 KB |
Output is correct |
12 |
Correct |
51 ms |
348 KB |
Output is correct |
13 |
Correct |
2 ms |
348 KB |
Output is correct |
14 |
Execution timed out |
1105 ms |
195532 KB |
Time limit exceeded |
15 |
Halted |
0 ms |
0 KB |
- |