제출 #380109

#제출 시각아이디문제언어결과실행 시간메모리
380109Theo830게임 (IOI14_game)C++17
0 / 100
1 ms364 KiB
#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(p1)){ return 1; } if(siz[p1] + siz[p2] <= x/2){ enose(u,v); return 1; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...