# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100936 | 2019-03-15T10:38:16 Z | E869120 | The Forest of Fangorn (CEOI14_fangorn) | C++14 | 3000 ms | 64836 KB |
#include <iostream> #include <vector> #include <algorithm> using namespace std; #pragma warning (disable: 4996) struct Point { long long px, py; }; int shogen(Point p1) { if (p1.py >= 0) return 1; return 2; } bool operator<(const Point &a1, const Point &a2) { int v1 = shogen(a1), v2 = shogen(a2); if (v1 < v2) return true; if (v1 > v2) return false; if (a1.px*a2.py > a1.py*a2.px) return true; return false; } vector<Point>V[2009]; int H, W, sx, sy, N, C, ex[10009], ey[10009]; vector<int>vec; Point G[2009]; bool solve(long long cx, long long cy, int ty) { for (int i = 1; i <= N; i++) { int pos1 = lower_bound(V[i].begin(), V[i].end(), Point{ cx - G[i].px, cy - G[i].py }) - V[i].begin(); if (pos1 == N - 1) pos1 = 0; if (ty == 1 && vec[i - 1] != pos1) return false; if (ty == 0) vec.push_back(pos1); } return true; } int main() { scanf("%d%d%d%d%d", &H, &W, &sx, &sy, &C); for (int i = 1; i <= C; i++) scanf("%d%d", &ex[i], &ey[i]); scanf("%d", &N); for (int i = 1; i <= N; i++) scanf("%lld%lld", &G[i].px, &G[i].py); for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) { if (i == j) continue; V[i].push_back(Point{ G[i].px - G[j].px, G[i].py - G[j].py }); } sort(V[i].begin(), V[i].end()); } solve(sx, sy, 0); vector<int>res; for (int i = 1; i <= C; i++) { bool vec2 = solve(ex[i], ey[i], 1); if (vec2 == true) res.push_back(i); } printf("%d\n", (int)res.size()); for (int i = 0; i < res.size(); i++) { if (i) printf(" "); printf("%d", res[i]); } if (res.size() != 0) printf("\n"); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 3 ms | 384 KB | Output is correct |
3 | Correct | 3 ms | 384 KB | Output is correct |
4 | Correct | 2 ms | 384 KB | Output is correct |
5 | Correct | 2 ms | 384 KB | Output is correct |
6 | Correct | 2 ms | 384 KB | Output is correct |
7 | Correct | 2 ms | 512 KB | Output is correct |
8 | Correct | 3 ms | 512 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 384 KB | Output is correct |
2 | Correct | 3 ms | 384 KB | Output is correct |
3 | Correct | 3 ms | 512 KB | Output is correct |
4 | Correct | 3 ms | 512 KB | Output is correct |
5 | Correct | 3 ms | 512 KB | Output is correct |
6 | Correct | 4 ms | 896 KB | Output is correct |
7 | Correct | 3 ms | 384 KB | Output is correct |
8 | Correct | 2 ms | 384 KB | Output is correct |
9 | Correct | 3 ms | 512 KB | Output is correct |
10 | Correct | 5 ms | 1152 KB | Output is correct |
11 | Correct | 6 ms | 1152 KB | Output is correct |
12 | Correct | 5 ms | 1280 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 3 ms | 384 KB | Output is correct |
3 | Correct | 2 ms | 384 KB | Output is correct |
4 | Correct | 114 ms | 16376 KB | Output is correct |
5 | Correct | 27 ms | 4216 KB | Output is correct |
6 | Correct | 439 ms | 64604 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 545 ms | 64836 KB | Output is correct |
2 | Execution timed out | 3022 ms | 64760 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |