Submission #100935

#TimeUsernameProblemLanguageResultExecution timeMemory
100935E869120The Forest of Fangorn (CEOI14_fangorn)C++14
80 / 100
3019 ms64844 KiB
#include <iostream> #include <vector> #include <algorithm> using namespace std; 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() { cin >> H >> W >> sx >> sy >> C; for (int i = 1; i <= C; i++) cin >> ex[i] >> ey[i]; cin >> N; for (int i = 1; i <= N; i++) cin >> 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); } cout << res.size() << endl; for (int i = 0; i < res.size(); i++) { if (i) cout << " "; cout << res[i]; } if (res.size() != 0) cout << endl; return 0; }

Compilation message (stderr)

fangorn.cpp: In function 'int main()':
fangorn.cpp:59:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < res.size(); i++) { if (i) cout << " "; cout << res[i]; }
                  ~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...