Submission #724604

#TimeUsernameProblemLanguageResultExecution timeMemory
724604TahirAliyevKutije (COCI21_kutije)C++17
70 / 70
232 ms11672 KiB
#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; bitset<MAX> visited; int adj[MAX][MAX]; vector<int> g[MAX]; bitset<MAX> accesible[MAX]; void dfs(int node, int par){ visited[node] = true; accesible[par][node] = true; for(int to : g[node]){ if(!visited[to]){ if(to < par){ accesible[par] |= accesible[to]; visited |= accesible[to]; continue; } dfs(to, par); } } } 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; scanf("%d", &a); if(a == j) continue; adj[j][a] = 1; } } for (int i = 1; i < MAX; i++) { for (int j = 1; j < MAX; j++) { if(adj[i][j]){ g[i].push_back(j); } } } for (int i = 1; i <= n; i++) { visited.reset(); dfs(i, i); } while(q--){ int a, b; scanf("%d%d", &a, &b); if(accesible[a][b]){ cout << "DA\n"; } else{ cout << "NE\n"; } } }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:40:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   40 |             int a; scanf("%d", &a);
      |                    ~~~~~^~~~~~~~~~
Main.cpp:65:24: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   65 |         int a, b; scanf("%d%d", &a, &b);
      |                   ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...