题解 1834: 蓝桥杯2016年第七届真题-路径之谜

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

50行简单dfs-路径之谜

摘要:```cpp #include #include using namespace std; const int N=25; int n,a[N],b[N],vis[N][N]; int……

蓝桥杯 路径之谜 DFS

摘要:# 路径之谜 DFS ## 完整代码 (AC) ```cpp #include #include using namespace std; const int maxn = 25; ……