最笨写法,不需要任何算法呜呜呜。小菜鸟专属。 摘要:###解题思路: ####首先进行数据传输变成n+1,m+1,即(n+1)*(m+1) |0|0|0|0|0| | ------------ | ------------ | ---------…… 题解列表 2022年12月10日 0 点赞 0 评论 95 浏览 评分:9.9
题解1096:Minesweeper 摘要:# 1096: Minesweeper ## 知识点 ### 知识点1:无限循环输入,知道输入两个0的时候结束 我这里使用的方法是,用`times`变量进行计数,使用`for`循环。…… 题解列表 2022年11月14日 0 点赞 0 评论 105 浏览 评分:9.9
1096: Minesweeper 摘要:```cpp #include #include using namespace std; const int maxn=101; int n,m,x[maxn],y[maxn],vist[…… 题解列表 2022年08月31日 0 点赞 0 评论 164 浏览 评分:9.9
SinzoL--题解 1096: Minesweeper 摘要:####先翻译一下:给出N×M大小的一个字符数组,每个单元由"*"或"."组成,"*"代表地雷,你要做的就是计算每个不是雷的单元周围有几个雷,并按示例输出 ###下面是代码: ```cpp #i…… 题解列表 2022年06月29日 0 点赞 0 评论 147 浏览 评分:0.0
1096: Minesweeper 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define MAX 100 // 地图最大尺寸 using namespace std; char position[M…… 题解列表 2022年05月08日 0 点赞 0 评论 108 浏览 评分:0.0
Minesweeper遍历 摘要:参考代码:#include<iostream> #include<cstring> using namespace std; int dx[8]={1,0,-1,0,1,1,-1,-1}; i…… 题解列表 2022年05月07日 0 点赞 0 评论 122 浏览 评分:0.0
暴力法+轰炸与排雷 综合法 的 简化版 完成 Minesweeper 摘要:解题思路:给出2种解法,时间复杂度几乎一样,但空间复杂度约为一半的关系。注意事项:暴力法:1.int s[102][102] = {0}为通用写法,若使用c++14,可使用int s[x+2][y+2…… 题解列表 2022年04月06日 0 点赞 0 评论 563 浏览 评分:9.9
优质题解 1096: Minesweeper 摘要:解题思路:说是黄金矿工,其实是扫雷的逻辑。没有什么算法上的难点,花时间的地方在于输出的数组里既有'*'又有数字,而我定义的数组是int型,所以一开始的想法是用static_cast把有…… 题解列表 2022年03月11日 0 点赞 1 评论 502 浏览 评分:8.7
相当之简单粗暴 摘要:解题思路:注意事项:参考代码#includeusing namespace std;int main(){ int x,y,num=0; while(cin>>x>>y){ …… 题解列表 2022年03月10日 0 点赞 0 评论 108 浏览 评分:6.0
Minesweeper 化繁为简(摒弃多层判断) 摘要:解题思路:本质上其实就是扫雷游戏,摒弃原有多层判断(四角、边缘、内部)。 换一种思路:既然是计算周围九宫格的雷数,就应该想到只要遍历对应元素周围(行差<=1 && 列差<=1…… 题解列表 2022年03月02日 0 点赞 0 评论 94 浏览 评分:0.0