# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
140684 | khrbuddy03 | 문명 (KOI17_civilization) | C++14 | 1031 ms | 54084 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int inf = 2e3 + 9;
const int dx[4] = {-1, 1, 0, 0};
const int dy[4] = {0, 0, -1, 1};
struct ds {
int par[inf * inf], siz[inf * inf];
inline int find(int u) {
if (u == par[u]) return u;
return par[u] = find(par[u]);
}
inline void merge(int u, int v) {
u = find(u); v = find(v);
if (u == v) return;
par[u] = v;
siz[v] += siz[u];
siz[u] = 0;
}
} cul;
int n, m;
int vis[inf][inf];
int main() {
scanf("%d%d", &n, &m);
for (int i = 0; i < n * n; ++i) cul.par[i] = i;
memset(vis, -1, sizeof(vis));
컴파일 시 표준 에러 (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... |