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>
#define ll long long
#define pb push_back
using namespace std;
int N;
vector<int> cnt(5,0);
void initialize(int n) {
N = n;
}
int hasEdge(int u, int v) {
cnt[u]++;
cnt[v]++;
int ans=0;
if(cnt[u] == 3 || cnt[v] == 3){
ans = 1;
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |