摘要: $flood-fill$裸题 \(DFS\) const int N=110; char g[N][N]; bool vis[N][N]; int n,m; bool check(int x,int y) { return x>=0 && x<n && y>=0 && y<m; } void dfs 阅读全文
posted @ 2020-12-18 22:50 Dazzling! 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 简单回溯法 注意:回溯法搜索全空间可不清vis数组 const int N=25; int a[N]; bool vis[N]; int n; bool isprime(int x) { for(int i=2;i*i<=x;i++) if(x % i == 0) return false; ret 阅读全文
posted @ 2020-12-18 22:35 Dazzling! 阅读(42) 评论(0) 推荐(0) 编辑