# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
84015 | ekrem | Port Facility (JOI17_port_facility) | C++98 | 6086 ms | 40812 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define st first
#define nd second
#define mp make_pair
#define pb push_back
#define mod 1000000007
#define N 1000005
using namespace std;
typedef pair < int , int > ii;
int n, var[N], u[N];
pair < int , int > x[N];
vector < int > g[N];
long long ans = 1;
void bfs(int node){
ans = ans*2%mod;
u[node] = 1;
queue < ii > q;
q.push(mp(node, 0) );
while(!q.empty()){
int node = q.front().st;
int par = q.front().nd;
q.pop();
for(int i = 0; i < g[node].size(); i++)
if(g[node][i] != par){
if(u[g[node][i]] == 0){
q.push(mp(g[node][i], node));
u[g[node][i]] = 3 - u[node];
}
else if(u[g[node][i]] != 3 - u[node]){
puts("0");
exit(0);
}
}
}
}
int main() {
// freopen("in.txt", "r", stdin);
// freopen("out.txt", "w", stdout);
scanf("%d",&n);
for(int i = 1; i <= n; i++)
scanf("%d %d",&x[i].st ,&x[i].nd);
sort(x + 1, x + n + 1);
for(int i = 1; i <= n; i++)
for(int j = i + 1; j <= n; j++)
if(i != j and x[j].st < x[i].nd and x[j].nd > x[i].nd){
g[i].pb(j);
g[j].pb(i);
// cout << i << " " << j << endl;
}
for(int i = 1; i <= n; i++)
if(!u[i]){
bfs(i);
}
printf("%lld\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... |