# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
21312 | kingpig9 | Port Facility (JOI17_port_facility) | C++11 | 3500 ms | 33272 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2e6 + 10;
struct union_find {
int par[MAXN];
union_find() {
iota(par, par + MAXN, 0);
}
int find (int x) {
return x == par[x] ? x : par[x] = find(par[x]);
}
void merge (int x, int y) {
par[find(x)] = find(y);
}
} uf, uf2;
int N;
int A[MAXN], B[MAXN];
int main() {
scanf("%d", &N);
for (int i = 1; i <= N; i++) {
scanf("%d %d", &A[i], &B[i]);
for (int j = 1; j < i; j++) {
if (!((A[i] < A[j] && B[j] < B[i]) || (A[j] < A[i] && B[i] < B[j]) || B[j] < A[i] || B[i] < A[j])) {
uf.merge(2 * i, 2 * j + 1);
uf.merge(2 * i + 1, 2 * j);
uf2.merge(i, j);
}
}
}
for (int i = 2; i <= 2 * N; i += 2) {
if (uf.find(i) == uf.find(i + 1)) {
puts("0");
return 0;
}
}
int ans = 1;
for (int i = 1; i <= N; i++) {
if (uf2.find(i) == i) {
ans = (ans * 2) % 1000000007;
}
}
printf("%d\n", ans);
}
컴파일 시 표준 에러 (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... |