# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
261083 | 2020-08-11T11:21:29 Z | onjo0127 | 별자리 (JOI12_constellation) | C++11 | 2 ms | 416 KB |
#include <bits/stdc++.h> #define X first #define Y second #define sz(V) ((int)(V).size()) using namespace std; using ll = long long; using pii = pair<int, int>; struct star { int X, Y, ty; } A[100009]; int CCW(star A, star B, star C) { ll tmp = 1LL*A.X*B.Y + 1LL*B.X*C.Y + 1LL*C.X*A.Y - 1LL*A.Y*B.X - 1LL*B.Y*C.X - 1LL*C.Y*A.X; if(tmp < 0) return -1; if(tmp == 0) return 0; if(tmp > 0) return +1; } int get(int x) { int ans = 1; const int MOD = 1e9 + 7; for(int i=0; i<x; i++) ans *= 2, ans %= MOD; return ans; } int main() { int N, tot = 0; scanf("%d", &N); for(int i=1; i<=N; i++) { scanf("%d%d%d", &A[i].X, &A[i].Y, &A[i].ty); if(A[i].ty == 0) ++tot; } sort(A+1, A+N+1, [&](star PP, star QQ) { if(PP.X == QQ.X) return PP.Y < QQ.Y; return PP.X < QQ.X; }); vector<star> H; sort(A+2, A+N+1, [&](star PP, star QQ) { return CCW(A[1], PP, QQ) > 0; }); H.push_back(A[1]); H.push_back(A[2]); for(int i=3; i<=N; i++) { while(sz(H) >= 2 && CCW(H[sz(H) - 2], H[sz(H) - 1], A[i]) < 0) H.pop_back(); H.push_back(A[i]); } int p = -1, c = -1, cnt = 0, ch = 0; for(int i=0; i<H.size(); i++) if(H[i].ty) { p = i; c = H[i].ty; break; } if(p == -1) return !printf("%d", get(tot)); for(int i=p+1; i<=p+sz(H); i++) { int it = i % sz(H); if(H[it].ty) { if(H[it].ty == c) tot -= cnt; else ++ch; c = H[it].ty; cnt = 0; } else ++cnt; } if(ch == 0) return !printf("%d", get(tot)); if(ch > 2) return !printf("0"); printf("%d", get(tot)); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 416 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |