# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
798969 | vjudge1 | Port Facility (JOI17_port_facility) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 2e3 + 10;
const int MOD = 1e9 + 7;
int n;
vector<int> g[N];
pair<int, int> bounds[N];
int cl[N];
bool flag = 0;
void dfs(int s, int p = -1) {
cl[s] = ((p == -1 || cl[p] == 2) ? 1 : 2);
for(int to : g[s]) {
if(!cl[to]) dfs(to, s);
flag |= (cl[to] == cl[s]);
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
cin >> n;
for(int i = 0; i < n; i++)
cin >> bounds[i].first >> bounds[i].second;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
if(bounds[i].first < bounds[j].first & bounds[j].first < bounds[i].second && bounds[i].second < bounds[j].second)
g[i].push_back(j);
if(bounds[i].first > bounds[j].first & bounds[j].first > bounds[i].second && bounds[i].second > bounds[j].second)
g[i].push_back(j);
}
}
int ans = 1;
for(int i = 0; i < n; i++) {
if(cl[i]) continue;
dfs(i);
ans = (ans * 2) % MOD;
}
if(flag) ans = 0;
cout << 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... |