이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define float double
#define pb push_back
#define F first
#define T int t; cin >> t; while(t--)
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
using namespace std;
/// Benzema is the best player in the world
const int N = 1003;
int n, m, q, a[N][N], comp[N];
vector<int> adj[N];
void dfs(int node, int col) {
comp[node] = col;
for(auto x: adj[node])
if (!comp[x])
dfs(x, col);
}
main() {
IOS
cin >> n >> m >> q;
for(int i = 1; i <= m; i++) {
for(int j = 1; j <= n; j++)
cin >> a[i][j], adj[j].push_back(a[i][j]);
}
int col = 0;
for(int i = 1; i <= n; i++) {
if (comp[i] == 0)
dfs(i, ++col);
}
while(q--) {
int u, v;
cin >> u >> v;
if (comp[u] == comp[v]) cout << "DA\n";
else cout << "NE\n";
}
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
22 | main() {
| ^~~~| # | 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... |