# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
105834 | Pro_ktmr | Port Facility (JOI17_port_facility) | C++14 | 6157 ms | 961864 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"bits/stdc++.h"
using namespace std;
#define LL long long
#define MP(a,b) make_pair(a,b)
#define MOD 1000000007LL
int N;
vector<pair<int,int> > v;
int A[1000000],B[1000000];
vector<int> betsu[1000000];
int group[1000000];
int main(){
scanf("%d", &N);
if(N > 100000) return -1;
for(int i=0; i<N; i++){
int a,b;
scanf("%d%d", &a, &b);
a--; b--;
v.push_back(MP(a,b));
}
sort(v.begin(), v.end());
for(int i=0; i<N; i++){
A[i] = v[i].first;
B[i] = v[i].second;
group[i] = -1;
}
set<pair<int,int> > st;
for(int i=0; i<N; i++){
while(st.size() > 0 && st.begin()->first < A[i]) st.erase(st.begin());
auto itr = st.lower_bound(MP(B[i],0));
while(itr != st.begin()){
itr--;
betsu[i].push_back(itr->second);
betsu[itr->second].push_back(i);
}
st.insert(MP(B[i],i));
}
LL ans = 1;
for(int i=0; i<N; i++){
if(group[i] != -1) continue;
ans *= 2;
ans %= MOD;
group[i] = 0;
queue<int> que;
que.push(i);
while(!que.empty()){
int now = que.front();
que.pop();
for(int j=0; j<betsu[now].size(); j++){
if(group[betsu[now][j]] == -1){
group[betsu[now][j]] = (group[now]+1) % 2;
que.push(betsu[now][j]);
}
else if(group[betsu[now][j]] == group[now]){
ans = 0;
printf("%d\n", ans);
return 0;
}
}
}
}
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... |