제출 #65411

#제출 시각아이디문제언어결과실행 시간메모리
65411theknife2001게임 (IOI14_game)C++17
15 / 100
4 ms628 KiB

#include "game.h"
#include <bits/stdc++.h>


using namespace std;
const int N=1555;
int cnt[N];
int n;
int counter=0;


void initialize(int N) {
n=N;
}

int hasEdge(int u, int v)
{
    cnt[u]++;
    cnt[v]++;
    if((n*(n-1))/2-counter==n-1)
    {
        return 1;
    }
    if(cnt[u]==n-1||cnt[v]==n-1)
    {
        return 1;
    }
    counter++;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...