# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
80593 | aquablitz11 | Port Facility (JOI17_port_facility) | C++14 | 41 ms | 1260 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using pii = pair<int, int>;
#define x first
#define y second
const int N = 2010;
const int MOD = 1e9+7;
int n, ans = 1;
pii A[N];
int col[N];
bool intersect(int al, int ar, int bl, int br)
{
if (bl > ar || br < al) return false;
if (bl >= al && br <= ar) return false;
if (al >= bl && ar <= br) return false;
return true;
}
void solve(int i)
{
//printf("colored %d = %d\n", i, col[i]);
for (int j = 0; j < n; ++j) {
if (intersect(A[i].x, A[i].y, A[j].x, A[j].y)) {
//printf("%d intersect %d\n", i, j);
if ((col[i] == 1 && col[j] == 2) || (col[i] == 2 && col[j] == 1)) {
//printf("skip\n");
continue;
}
if (col[i] == col[j]) {
//printf("Dead\n");
ans = 0;
break;
}
col[j] = col[i] == 1 ? 2 : 1;
//printf("%d set %d\n", i, j);
solve(j);
}
}
}
int main()
{
scanf("%d", &n);
for (int i = 0; i < n; ++i)
scanf("%d%d", &A[i].x, &A[i].y);
for (int i = 0; i < n && ans != 0; ++i) {
if (!col[i]) {
//printf("*2 for %d\n", i);
col[i] = 1;
solve(i);
ans = (ans*2)%MOD;
}
}
printf("%d\n", ans);
return 0;
}
컴파일 시 표준 에러 (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... |