# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
114101 | Mamnoon_Siam | Port Facility (JOI17_port_facility) | C++17 | 6042 ms | 40532 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ii = pair<int, int>;
const int maxn = 1e6 + 6;
int n, s[maxn], t[maxn];
vector<int> g[maxn];
int lvl[maxn], vis[maxn];
bool check(int source) {
queue<int> Q;
vis[source] = 1;
Q.push(source);
while(Q.size()) {
int u = Q.front();
Q.pop();
for(int v : g[u]) {
if(vis[v]) {
if(lvl[v] == lvl[u]) {
return false;
}
} else {
lvl[v] = lvl[u] + 1;
vis[v] = 1;
Q.push(v);
}
}
} return true;
}
int main(int argc, char const *argv[])
{
// freopen("in", "r", stdin);
scanf("%d", &n);
vector<ii> tmp;
for(int i = 1; i <= n; i++) {
int _s, _t;
scanf("%d %d", &_s, &_t);
tmp.emplace_back(_s, _t);
}
sort(tmp.begin(), tmp.end());
for(int i = 0; i < n; i++) {
s[i + 1] = tmp[i].first;
t[i + 1] = tmp[i].second;
}
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= n; j++) {
if((s[i] < s[j] and s[j] < t[i] and t[i] < t[j]) or (s[j] < s[i] and s[i] < t[j] and t[j] < t[i])) {
g[i].emplace_back(j);
}
}
}
const int mod = 1e9 + 7;
int ans = 1;
for(int i = 1; i <= n; i++) {
if(!vis[i]) {
if(!check(i)) {
puts("0");
return 0;
} else {
ans <<= 1;
if(ans >= mod) {
ans -= 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... |