# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
451963 | vector | Fountain Parks (IOI21_parks) | C++17 | 845 ms | 49188 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "parks.h"
#include <bits/stdc++.h>
#define SIZE 200001
using namespace std;
struct point
{
int x, y, idx;
};
set<pair<int, int> > vis;
map<pair<int, int>, int> fnt;
point p[SIZE];
int root[SIZE], cnt;
int dx[5][3]=
{
{ 1, 1 },
{ 1, -1 },
{ -1, 1 },
{ -1, -1 }
};
int Find(int x)
{
if (x==root[x]) return x;
return root[x]=Find(root[x]);
}
void Union(int x, int y)
{
if (Find(x)==Find(y)) return;
root[root[y]]=root[x], cnt++;
}
bool comp1(point a, point b)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |