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>
#include "game.h"
using namespace std;
using ll = long long;
const int mxN = 2e3+10;
vector<int> adj[mxN];
int n;
bool blocked[mxN][mxN];
bool vis[mxN];
int dfs(int node) {
vis[node] = true;
int cnt = 1;
for(auto it : adj[node]) {
if(blocked[node][it]) continue;
if(!vis[it]) cnt += dfs(it);
}
return cnt;
}
int hasEdge(int u, int v) {
memset(vis, false, sizeof vis);
blocked[u][v] = blocked[v][u] = true;
int cnt = dfs(0);
if(cnt != n) return 1;
return 0;
}
void initialize(int N) {
n = N;
for(int i = 0; i < n; i++) {
for(int j = i+1; j < n; j++) {
adj[i].push_back(j);
adj[j].push_back(i);
}
}
}
/*
int main()
{
initialize(4);
cout << hasEdge(0, 1) << hasEdge(3, 0) << hasEdge(1, 2) << hasEdge(0, 2);
cout << hasEdge(3, 1) << hasEdge(2, 3);
}*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |