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 "game.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ff first
#define ss second
#define pb push_back
#define mk make_pair
int n;
map<int,int> mp;
int parent[2000];
int num_child[2000];
vector<pair<int,int > > p;
int find(int node) {
if(parent[node] == node) return node;
return parent[node] = find(parent[node]);
}
void initialize(int N) {
n = N;
for(int i = 0; i < n; i ++) {
parent[i] = i;
num_child[i] = 1;
}
}
int hasEdge(int u, int v) {
if(mp[u] + 1 < n - 1 && mp[v] + 1 < n - 1) {
mp[u] ++;
mp[v] ++;
return 0;
}
return 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |