Submission #380110

# Submission time Handle Problem Language Result Execution time Memory
380110 2021-03-20T10:11:06 Z Theo830 Game (IOI14_game) C++17
0 / 100
175 ms 262148 KB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
typedef int ll;
typedef pair<ll,ll> ii;
#define iii pair<ll,ii>
#define f(i,a,b) for(int i = a;i < b;i++)
#define pb push_back
#define vll vector<ll>
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
///I hope I will get uprating and don't make mistakes
///I will never stop programming
///sqrt(-1) Love C++
///Please don't hack me
///@TheofanisOrfanou Theo830
///Think different approaches (bs,dp,greedy,graphs,shortest paths,mst)
///Stay Calm
///Look for special cases
///Beware of overflow and array bounds
///Think the problem backwards
///Training
ll siz[1505] = {0};
ll par[1505];
ll x;
ll find_par(ll x){
    if(par[x] == x){
        return x;
    }
    return par[x] = find_par(x);
}
void enose(ll x,ll y){
    ll p1 = find_par(x);
    ll p2 = find_par(y);
    par[p2] = p1;
    siz[p1] += siz[p2];
    siz[p2] = 0;
}
void initialize(int n){
    f(i,0,n+5){
        siz[i] = 1;
        par[i] = i;
    }
    x = n;
}
int hasEdge(int u, int v){
    if(u > v){
        swap(u,v);
    }
    ll p1 = find_par(u);
    ll p2 = find_par(v);
    if(find_par(p1) == find_par(p2)){
        return 1;
    }
    if(siz[p1] + siz[p2] <= x/2){
        enose(u,v);
        return 1;
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 168 ms 262148 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 175 ms 262148 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 163 ms 262148 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -