# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1056917 | Nickpapadak | Game (eJOI20_game) | C++14 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const unsigned int MAXN = (int)2e+1 + 5;
const unsigned int MAXMN = 410;
int grid[MAXN][MAXN];
int N, M;
int cnt;
int p[MAXMN];
int sz[MAXMN];
int CI(int x, int y) {return (y-1)*M + x;}
int findp(int u){
if(p[u] == u) return u;
return p[u] = findp(p[u]);
}
void Union(int u, int v){
if(findp(v) == findp(u)) return;
if(sz[findp(v)] > sz[findp(u)]) swap(u,v);
sz[findp(u)] += sz[findp(v)];
// int x = findp(u), y = findp(v);
// printf("%d\n", findp(v));
// p[2]= 1;
p[findp(v)] = findp(u);
}
void Join(int x, int y, int dx, int dy){
// printf("\n\n%d %d\n\n", x, y);
if(x < 1 || x > M || y < 0 || y > N) return;
if(dx < 1 || dx > M || dy < 0 || dy > N) return;
컴파일 시 표준 에러 (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... |