首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
golygons专题
UVA - 225 Golygons
题意:求从原点开始依次走1,2...n步后到回到原点的方案数,其中不能经过障碍,每次必须左右拐 思路:一个比较简单的DFS,结果做了好久 #include <iostream>#include <cstring>#include <algorithm>#include <cstdio>using namespace std;const int MAXN = 250;const int
阅读更多...