이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define sz(x) (int)x.size()
#define ALL(v) v.begin(),v.end()
#define MASK(k) (1LL << (k))
#define BIT(x, i) (((x) >> (i)) & 1)
#define oo (ll)1e18
#define INF (ll)1e9
#define MOD (ll)(1e9 + 7)
using namespace std;
template<class T1, class T2>
bool maximize(T1 &a, T2 b){if(a < b){a = b; return true;} return false;}
template<class T1, class T2>
bool minimize(T1 &a, T2 b){if(a > b){a = b; return true;} return false;}
template<class T1, class T2>
void add(T1 &a, T2 b){a += b; if(a >= MOD) a -= MOD;}
template<class T1, class T2>
void sub(T1 &a, T2 b){a -= b; if(a < 0) a += MOD;}
template<class T>
void cps(T &v){sort(ALL(v)); v.resize(unique(ALL(v)) - v.begin());}
const int MAX = 1e6 + 10;
int N;
pair<int, int> a[MAX];
vector<int> adj[MAX];
int num[MAX];
bool dfs(int u, int c){
if(num[u]){
return num[u] == c;
}
num[u] = c;
for(int v: adj[u]){
if(!dfs(v, 3 - c)) return false;
}
return true;
}
void solve(){
cin >> N;
for(int i=1; i<=N; i++){
cin >> a[i].fi >> a[i].se;
}
sort(a + 1, a + N + 1);
for(int i=1; i<=N; i++){
for(int j=i+1; j<=N; j++){
if(a[i].se < a[j].se && a[i].se > a[j].fi){
adj[i].push_back(j);
adj[j].push_back(i);
}
}
}
int ans = 1;
for(int i=1; i<=N; i++) if(!num[i]){
if(!dfs(i, 1)){
cout << "0\n";
return;
}
ans = 2LL * ans % MOD;
}
cout << ans << '\n';
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
// freopen("terrorists.inp", "r", stdin);
// freopen("terrorists.out", "w", stdout);
int t = 1;
// cin >> t;
while(t--){
solve();
}
return 0;
}
# | 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... |