USACO Open 2019 Platinum - Valleys

Author: Benjamin Qi

Table of Contents


Edit on Github

No need to measure "curvature" ... Just maintain # of holes in each region with two DSUs.

This section is not complete.

Feel free to file a request to complete this using the "Contact Us" button.
int N, h[750][750];
int hsh(pi a) {
return N*a.f+a.s;
}
bool valid(pi a) {
return 0 <= a.f && a.f < N && 0 <= a.s && a.s < N;
}

Give Us Feedback on USACO Open 2019 Platinum - Valleys!