제출 #1029950

#제출 시각아이디문제언어결과실행 시간메모리
1029950codexistent게임 (IOI14_game)C++14
0 / 100
1 ms600 KiB
#include <bits/stdc++.h>
using namespace std;
#define MAXN 1505
#define FOR(i, a, b) for(int i = a; i <= b; i++)

int N, ec[MAXN];

void initialize(int n){
    N = n;
    FOR(i, 1, N) ec[i] = 0;
}

int hasEdge(int u, int v){
    ec[u]++, ec[v]++;

    if(ec[u] == N - 1 || ec[v] == N - 1) {
        return 1;
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...