# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
261704 | 2020-08-12T02:22:26 Z | onjo0127 | 별자리 (JOI12_constellation) | C++11 | 91 ms | 3720 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>; const int MOD = 1e9 + 7; 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; } long long get(int x) { long long ans = 1; for(int i=0; i<x; i++) ans *= 2, ans %= MOD; return ans; } int main() { int N; long long 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]); } long long hto = 0; for(auto& it: H) if(it.ty == 0) ++hto; int p = -1, ch = 0, c = -1; long long cnt = 0, ans = 0; for(int i=0; i<H.size(); i++) if(H[i].ty) { p = i; c = H[i].ty; break; } if(p == -1) { ans = 1LL * hto * (hto - 1) + 2; ans %= MOD; ans *= get(tot - hto); printf("%lld", ans % MOD); return 0; } long long ans2 = 1; for(int i=p+1; i<=p+sz(H); i++) { int it = i % sz(H); if(H[it].ty) { if(H[it].ty == c) ans += 1LL * cnt * (cnt + 1) / 2, ans %= MOD; else ++ch, ans2 *= cnt + 1; c = H[it].ty; cnt = 0; } else ++cnt; } if(ch == 0) return !printf("%lld", (ans + 1) * get(tot - hto) % MOD); if(ch > 2) return !printf("0"); ans2 %= MOD; assert(0); printf("%lld", ans2 * get(tot - hto) % MOD); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 256 KB | Output is correct |
2 | Incorrect | 0 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Runtime error | 1 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Runtime error | 1 ms | 544 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Runtime error | 75 ms | 2808 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 416 KB | Output is correct |
2 | Correct | 78 ms | 3576 KB | Output is correct |
3 | Incorrect | 91 ms | 3720 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |