제출 #1004608

#제출 시각아이디문제언어결과실행 시간메모리
1004608Gray게임 (IOI14_game)C++17
100 / 100
172 ms16516 KiB
#include<bits/stdc++.h>
using namespace std;
#define ll int
#define ff first
#define ss second
#define ln "\n"
#include "game.h"
vector<ll> con;
ll N;
void initialize(int n) {
    N=n;
    con.resize(n, 0);
}

int hasEdge(int u, int v) {
    if (u>v) swap(u, v);
    if (con[u]==N-u-2){
        return 1;
    }else{
        con[u]++;
        return 0;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...