This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/3_Bronze/Rect_Geo.md
2020-06-16 14:05:15 -04:00

1 KiB

id title author
rect-geo Rectangle Geometry Darren Yao

"Geometry" problems on USACO Bronze are usually quite simple and limited to intersections and unions of squares or rectangles.

  • Some only include two or three squares or rectangles, in which case you can simply draw out cases on paper. This should logically lead to a solution.
  • Also, the coordinates typically only go up to 1000, so a program that performs \approx 1000^2 operations (ex. with a nested loop) should pass.

Problems