This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define pb push_back
#define all(v) ((v).begin(), (v).end())
#define sortv(v) sort(all(v))
#define sz(v) ((int)(v).size())
#define uniqv(v) (v).erase(unique(all(v)), (v).end())
#define umax(a, b) (a)=max((a), (b))
#define umin(a, b) (a)=min((a), (b))
#define FOR(i,a,b) for(int i = (a); i <= (b); i++)
#define rep(i,n) FOR(i,1,n)
#define rep0(i,n) FOR(i,0,(int)(n)-1)
#define FI first
#define SE second
#define INF 2000000000
#define INFLL 1000000000000000000LL
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const ll DIV = 1000000007;
const int MAX_N = 1000000;
int N;
vector<pii> vt;
struct UNIONFIND{
int SZ;
vector<int> group;
void init(int x){
SZ = x;
for(int i=0; i<=SZ; i++){
group.pb(i);
}
}
int find_g(int x){
return x==group[x] ? x : group[x] = find_g(group[x]);
}
void union_g(int x, int y){
x = find_g(x); y = find_g(y);
group[x] = y;
}
int calc_num(){
int ret = 0;
for(int i=1; i<=SZ; i++){
if(find_g(i)==i) ret++;
}
return ret;
}
};
UNIONFIND UF;
bool simul(){
int idx = 0;
deque<int> dq1, dq2;
for(int i=1; i<=2*N; i++){
if(idx<N && vt[idx].first==i){
int add = vt[idx++].second;
if(dq1.empty()){
if(dq2.empty()){
dq1.pb(add);
}else{
if(add>dq2.back()){
dq1.pb(add);
}else{
dq2.pb(add);
}
}
}else if(dq2.empty()){
if(add>dq1.back()){
dq2.pb(add);
}else{
dq1.pb(add);
}
}else{
int b1 = dq1.back(); int b2 = dq2.back();
if(add<b1 && add<b2){
if(b1<b2) dq1.pb(add);
else dq2.pb(add);
}else if(add<b1){
dq1.pb(add);
}else if(add<b2){
dq2.pb(add);
}else{
return false;
}
}
}else{
if(!dq1.empty() && dq1.back()==i) dq1.pop_back();
else if(!dq2.empty() && dq2.back()==i) dq2.pop_back();
else return false;
}
}
return true;
}
struct SEG{
struct NODE{
int l=-1, r=-1;
set<int> st;
};
vector<NODE> seg;
int SZ, cnt;
void Init(int x){
SZ = x; seg.resize(SZ*2);
cnt = 1;
init(0, 1, SZ);
}
void init(int idx, int s, int e){
if(s==e) return;
seg[idx].l = cnt++; seg[idx].r = cnt++;
init(seg[idx].l, s, (s+e)/2);
init(seg[idx].r, (s+e)/2+1, e);
}
void Update(int x, int y){
update(0, 1, SZ, x, y);
}
void update(int idx, int s, int e, int x, int y){
//cout<<idx<<" "<<s<<" "<<e<<" "<<x<<" "<<y<<endl;
if(y==1) {
seg[idx].st.insert(x);
}
else{
seg[idx].st.erase(x);
}
if(s==e) return;
if(x<=(s+e)/2){
update(seg[idx].l, s, (s+e)/2, x, y);
}else{
update(seg[idx].r, (s+e)/2+1, e, x, y);
}
}
void Calc(int x, int y){
calc(0, 1, SZ, x, y);
}
void calc(int idx, int s, int e, int x, int y){
//cout<<idx<<" "<<s<<" "<<e<<" "<<x<<" "<<y<<endl;
if(x<=s && e<=y){
int k=0;
//cout<<idx<<" "<<s<<" "<<e<<" "<<x<<" "<<y<<endl;
if(seg[idx].st.empty()){
return;
}
for(set<int>::iterator it = seg[idx].st.begin(); it!=seg[idx].st.end(); it++){
int t = (*it);
//cout<<t<<" ";
UF.union_g(y, t);
k = max(k, t);
}
//cout<<endl;
seg[idx].st.clear();
seg[idx].st.insert(k);
return;
}else if(x>e || y<s) return;
calc(seg[idx].l, s, (s+e)/2, x, y);
calc(seg[idx].r, (s+e)/2+1, e, x, y);
}
};
SEG Seg;
int main(){
scanf("%d", &N);
for(int i=1; i<=N; i++){
int a, b;
scanf("%d%d", &a, &b);
vt.pb({a, b});
}
sort(vt.begin(), vt.end());
if(!simul()){
printf("0");
return 0;
}
int idx = 0;
UF.init(N*2);
Seg.Init(N*2);
for(int i=1; i<=N*2; i++){
if(idx<N && vt[idx].first==i){
//cout<<vt[idx].first<<" "<<vt[idx].second<<endl;
Seg.Calc(vt[idx].first, vt[idx].second);
Seg.Update(vt[idx].second, 1);
idx++;
}else{
//cout<<i<<" "<<endl;
Seg.Update(i, -1);
}
}
int t = UF.calc_num()-N;
ll ans = 1;
for(int i=1; i<=t; i++){
ans = (ans*2)%DIV;
}
cout<<ans;
return 0;
}
Compilation message (stderr)
port_facility.cpp: In function 'int main()':
port_facility.cpp:167:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
port_facility.cpp:170:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~
# | 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... |