摘要: #include <bits/stdc++.h> using namespace std; char a[40][60]; //存图 int nextx[4] = { 1,0,0,-1 }, nexty[4] = { 0,-1,1,0 }; //D<L<R<U 字典序直接把方向数组处理好就可以了 i 阅读全文
posted @ 2022-12-31 20:50 弈星 阅读(13) 评论(0) 推荐(0)