摘要: 题目是让找一个长度不为一的环,用DFS即可。 #include <iostream> #include <cstring> using namespace std; char mp[510][510]; bool vis[210][210]; int n, m; int fx[] = {0, 0, 阅读全文
posted @ 2022-05-06 20:23 Flying_bullet 阅读(40) 评论(0) 推荐(0)