# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
503326 | rainboy | Kućice (COCI21_kucice) | C11 | 3 ms | 280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 100
#define MD 1000000007
int pp2[N + 1];
void init() {
int i;
pp2[0] = 1;
for (i = 1; i <= N; i++)
pp2[i] = pp2[i - 1] * 2 % MD;
}
int xx[N], yy[N];
long long cross(int i, int j, int k) {
return (long long) (xx[j] - xx[i]) * (yy[k] - yy[i]) - (long long) (xx[k] - xx[i]) * (yy[j] - yy[i]);
}
int main() {
int n, i, j, k, ans;
init();
scanf("%d", &n);
if (n > N) {
printf("%lld\n", (long long) pp2[n - 1] * n % MD);
return 0;
}
for (i = 0; i < n; i++)
scanf("%d%d", &xx[i], &yy[i]);
ans = (long long) (pp2[n] - 1) * n % MD;
for (i = 0; i < n; i++)
for (j = 0; j < n; j++)
if (j != i) {
int cnt = 0;
for (k = 0; k < n; k++)
if (k != i && cross(i, j, k) < 0)
cnt++;
ans = (ans - pp2[cnt] + MD) % MD;
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |