USACO 2017 February Contest, Gold Problem 1. Why Did the Cow Cross the Road
原题下载 USACO2017-FEB-G1 答案: #include <iostream> #include <vector> #include <queue> using namespace std; int dr[] = {0, 1, 2, 3, 2, 1, 0, -1, -2, -3, -2, -1, -1, 1, 0, 0}; int ...