제출 #889096

#제출 시각아이디문제언어결과실행 시간메모리
889096aguss게임 (IOI14_game)C++14
0 / 100
1 ms348 KiB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int k;
vector<int> arr;
void initialize(int n) {
    k = n;
    fill(arr.begin(), arr.end(), n - 1);
}

int hasEdge(int u, int v) {
    if(!(arr[u]--) or !(arr[v]--))
        return 1;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...