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/6_Plat/Geo_Pri.mdx
2020-06-27 22:11:09 -04:00

39 lines
1.9 KiB
Text

---
id: geo-pri
title: "Geometry Primitives"
author: Benjamin Qi
description: Basic setup for geometry problems.
---
## Primitives
You should know basic operations like cross product and dot product. For platinum specifically, you should be fine as long as you know how to code **convex hull**.
### Tutorial
<resources>
<resource source="CPC" title="12 - geometry" url="12_geometry">basics, polygon area, point in polygon</resource>
<resource source="CPH" title="29"></resource>
<resource source="TC" title="Basic Geometry Concepts" url="geometry-concepts-basic-concepts"></resource>
<resource source="CF" title="Point Class" url="blog/entry/48122"></resource>
<resource source="CF" title="C++ - std::complex" url="blog/entry/22175"></resource>
<resource source="cp-algo" title="Geometry - Elementary Operations" url="https://cp-algorithms.com/"></resource>
<resource source="CF" title="vlecomte - Geometry Handbook" url="blog/entry/59129"></resource>
</resources>
### Problems
- [My Templates](https://github.com/bqi343/USACO/tree/master/Implementations/content/geometry%20(13)/Primitives)
- Template Testing
- [yosupo: Sort Points by Arg](https://judge.yosupo.jp/problem/sort_points_by_argument)
- [Kattis Point in Polygon](https://open.kattis.com/problems/pointinpolygon)
- [Kattis Polygon Area](https://open.kattis.com/problems/polygonarea)
- [Kattis Max Collinear](https://open.kattis.com/problems/maxcolinear)
- Misc
- [Arpa & Geo](http://codeforces.com/problemset/problem/851/B)
- [Tell Your World](http://codeforces.com/problemset/problem/849/B)
- [Gleb & Pizza](http://codeforces.com/problemset/problem/842/B)
- [Birthday Cake](https://open.kattis.com/problems/birthdaycake)
- [Racing Off Track](https://open.kattis.com/contests/acpc17open/problems/racingofftrack)
- [TopCoder Watchtower](https://community.topcoder.com/stat?c=problem_statement&pm=2014&rd=4685)