# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
539002 | MilosMilutinovic | Port Facility (JOI17_port_facility) | C++14 | 6027 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)(n); i ++)
#define rep1(i, n) for(int i = 1; i <= (int)(n); i ++)
#define MP make_pair
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
int n, a[25], b[25];
bool inter(int l1, int r1, int l2, int r2)
{
if(r1 < l2) return true;
if(r2 < l1) return true;
if(l1 <= l2 && r2 <= r1) return true;
if(l2 <= l1 && r1 <= r2) return true;
return false;
}
bool check(int m)
{
rep(i, n) rep(j, n) if((m >> i & 1) == (m >> j & 1)) if(!inter(a[i], b[i], a[j], b[j])) return false;
return true;
}
int main()
{
scanf("%d", &n);
rep(i, n) scanf("%d%d", &a[i], &b[i]);
int ans = 0;
rep(m, 1 << n) if(check(m)) ans ++;
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... |