제출 #588470

#제출 시각아이디문제언어결과실행 시간메모리
588470Vanilla게임 (IOI14_game)C++17
0 / 100
1 ms332 KiB
#include <bits/stdc++.h>
#include "game.h"
using namespace std;
const int maxn = 1e3 + 5e2 + 2;
int dad[maxn];
int queries[maxn];
int comp, rem;

int find_dad(int x) {
    return dad[x] = (x == dad[x] ? x: find_dad(dad[x]));
}

void merge (int x, int y) {
    x = find_dad(x), y = find_dad(y);
    dad[x] = y;
}

void initialize(int n) {
    rem = n * (n - 1) / 2;
    comp = n;
    for (int i = 0; i < n; i++){
        queries[i] = n-1;
        dad[i] = i;
    }
}

int hasEdge(int u, int v) {
    queries[u]--;
    queries[v]--;
    if (find_dad(u) == find_dad(v)) {
        return 1;
    }
    if (comp == rem - 1) {
        merge(u,v);
        return 1;
    }
    if (queries[u] && queries[v]) {
        return 0;
    }
    else {
        merge(u,v);
        return 1;
    }
    rem--;
    return 0;
}

// int main() {
//     int n;
//     cin >> n;
//     initialize(n);
//     for (int i = 0; i < n * (n - 1) / 2; i++){
//         int x,y;
//         cout << i + 1 << "/" << n * (n - 1) / 2 << ": ";
//         cin >> x >> y;
//         cout << hasEdge(x,y) << endl;
//     }
// }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...