摘要:
题目链接理解了题意之后,这个题感觉状态转移还是挺好想的,实现起来确实有点繁琐,代码能力还有待加强,经过很长时间才发现bug。注意坐标可能是负的。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 int dp[12][40][41]; 8 bool o[12][41][41]; 9 int n,ans,d;10 int gcd(int a,int b)11 {12 return b == 0?a:gcd(b,a%b);13 }14 int fun(int t,int ... 阅读全文