# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
69126 | Inovak | Port Facility (JOI17_port_facility) | C++14 | 2 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define ll long long
#define OK puts("OK");
#define sz(s) (int)s.size()
#define all(s) s.begin(), s.end()
using namespace std;
const int N = 2e6+10;
const int mod = 1e9+7;
int n;
pair <int, int> p[N];
stack <int> a, b;
ll ans = 1;
int main() {
scanf("%d", &n);
for(int i = 1; i <= n; i++) {
scanf("%d%d", &p[i].fr, &p[i].sc);
}
sort(p + 1, p + n + 1);
for(int i = 1; i <= n; i++) {
while(!a.empty() && a.top() < p[i].fr) a.pop();
while(!b.empty() && b.top() < p[i].fr) b.pop();
ll y = 2;
bool fl = 0;
if(!a.empty() && a.top() < p[i].sc) y--;
else a.push(p[i].sc), fl = 1;
if(!b.empty() && b.top() < p[i].sc) y--;
else if(!fl) b.push(p[i].sc);
if(y == 0) {puts("0");return 0;}
ans = ans * y % mod;
}
cout << ans << endl;
}
컴파일 시 표준 에러 (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... |