# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
210545 | mahmoudbadawy | Port Facility (JOI17_port_facility) | C++17 | 2024 ms | 836848 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define F first
#define S second
using namespace std;
const int N=1e6+6,MOD=1e9+7;
pair<int,int> arr[N];
int n;
stack<int> st;
int uni[N],sz[N];
deque<int> lst[N];
vector< pair<int,int> > ev,ed;
vector<int> adj[N];
int vis[N],col[N];
int uni_find(int x)
{
return uni[x]=(uni[x]==x?x:uni_find(uni[x]));
}
void unio(int x,int y)
{
int a=uni_find(x),b=uni_find(y);
if(sz[a]>sz[b])
{
while(lst[b].size())
{
lst[a].push_back(lst[b].front()); lst[b].pop_front();
}
uni[b]=a;
sz[a]+=sz[b];
}
else
{
while(lst[a].size())
{
lst[b].push_front(lst[a].back()); lst[a].pop_back();
}
uni[a]=b;
sz[b]+=sz[a];
}
}
bool go(int x,int c)
{
if(vis[x])
return col[x]==c;
vis[x]=1; col[x]=c;
bool ans=1;
for(int i:adj[x])
ans&=go(i,c^1);
return ans;
}
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
uni[i]=i; sz[i]=1; lst[i].push_back(i);
scanf("%d %d",&arr[i].F,&arr[i].S);
ev.push_back({arr[i].F,i});
ev.push_back({arr[i].S,-i});
}
sort(ev.begin(),ev.end());
for(int i=0;i<ev.size();i++)
{
//cout << ev[i].S << endl;
if(ev[i].S>0)
{
int x=uni_find(ev[i].S);
st.push(x);
}
else
{
int x=uni_find(-ev[i].S);
int z=uni_find(st.top()); st.pop();
if(z==x)
{
if(lst[z].back()!=-ev[i].S)
{
cout << 0 << endl;
return 0;
}
sz[z]--;
lst[z].pop_back();
if(sz[z]) st.push(z);
continue;
}
int y=uni_find(st.top()); st.pop();
while(y!=x)
{
unio(y,z);
y=uni_find(st.top()); st.pop();
}
if(lst[y].back()!=-ev[i].S)
{
cout << 0 << endl;
return 0;
}
lst[y].pop_back();
sz[y]--;
if(sz[y]) st.push(y);
st.push(z);
ed.push_back({y,z});
}
}
for(auto i:ed)
{
int x=uni_find(i.F),y=uni_find(i.S);
//cout << x << " " << y << endl;
adj[x].push_back(y);
adj[y].push_back(x);
}
int ans=0;
for(int i=1;i<=n;i++)
{
int x=uni_find(i);
if(!vis[x])
{
ans++;
if(!go(x,0))
{
cout << 0 << endl;
return 0;
}
}
}
int cur=1;
while(ans--) cur=(cur*2)%MOD;
cout << cur << endl;
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... |