답안 #259815

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
259815 2020-08-08T15:34:49 Z miguel 게임 (IOI14_game) C++14
0 / 100
1 ms 384 KB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define clock (clock() * 1000.0 / CLOCKS_PER_SEC)
#define dbg(x) cout << #x << '=' << x << '\n';
#define ll long long
#define double long double
#define x first
#define y second
#define vi vector <int>
#define L nod<<1
#define R ((nod<<1)|1)
#define PI 3.14159265358979
const ll mod=1000000007;
int n, questions[2002];
bool connected[2002];

void initialize(int N){
    n=N;
    for(int i=0; i<=n; i++) questions[i]=0, connected[i]=0;
}

int hasEdge(int u, int v){
    if(questions[u]!=n-1 && questions[v]!=n-1) return 0;
    questions[u]++, questions[v]++, connected[u]=connected[v]=1;
    return 1;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -