# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
317496 | mohamedsobhi777 | 낙하산 고리들 (IOI12_rings) | C++14 | 1420 ms | 107756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma comment(linker, "/STACK:10000000")
using namespace std;
int N;
const int cn = 2e6;
vector<int> adj[cn];
int deg[cn];
int vis[cn];
int c;
bool bd = 1;
int del;
vector<int> vec;
vector<int> th;
int asy = 1;
int cs = 0;
struct dsu
{
int fat[cn];
dsu()
{
memset(fat, 0, sizeof fat);
for (int i = 0; i < cn; ++i)
fat[i] = i;
}
inline int find(int x) { return fat[x] = (x == fat[x] ? x : find(fat[x])); }
inline bool same(int x, int y) { return find(x) == find(y); }
void link(int u, int v)
{
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |