# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
77891 | win11905 | Port Facility (JOI17_port_facility) | C++11 | 6160 ms | 767768 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pii pair<int, int>
#define x first
#define y second
const int N = 1e6+5;
const int M = 1e9+7;
int n, cnt, col[N];
vector<pii> V;
vector<int> g[N];
void dfs(int u) {
for(int v : g[u]) if(!col[v]) col[v] = col[u] ^ 3, dfs(v);
else if(col[v] != (col[u] ^ 3)) cnt = -1e9;
}
int main() {
scanf("%d", &n);
V.reserve(n);
for(int i = 0, a, b; i < n; ++i) scanf("%d %d", &a, &b), V.emplace_back(a, b);
sort(V.begin(), V.end());
map<int, int> pos;
for(int i = 0; i < n; ++i) {
for(auto it = pos.lower_bound(V[i].x); it != pos.upper_bound(V[i].y); ++it) {
g[i].emplace_back(it->y), g[it->y].emplace_back(i);
}
pos[V[i].y] = i;
}
for(int i = 0; i < n; ++i) if(!col[i]) col[i] = 1, dfs(i), cnt++;
if(cnt < 0) return puts("0"), 0;
int ans = 1;
for(int i = 0; i < cnt; ++i) ans = (ans << 1) % M;
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... |