扫雷 C++

扫雷

https://ac.nowcoder.com/acm/problem/22232

#include <iostream>
#include <cmath>
#include <algorithm>
#include <vector>

using namespace std;

char a[105][105], b[105][105];

int main(){
    int n, m;
    cin >> n >> m;
    getchar();
    for(int i = 0; i < n; ++i){
        for(int j = 0; j < m; ++j){
            cin >> a[i][j];
        }
        getchar();
    }
    for(int i = 0; i < n; ++i){
        for(int j = 0; j < m; ++j){
            int cnt = 0;
            if(a[i][j] == '*') b[i][j] = '*';
            else{
                if(i > 0 && j > 0 && a[i - 1][j - 1] == '*') ++cnt;
                if(i > 0 && a[i - 1][j] == '*') ++cnt;
                if(i > 0 && j + 1 < m && a[i - 1][j + 1] == '*') ++cnt;
                if(j > 0 && a[i][j - 1] == '*') ++cnt;
                if(j + 1 < m && a[i][j + 1] == '*') ++cnt;
                if(i + 1 < n && j > 0 && a[i + 1][j - 1] == '*') ++cnt;
                if(i + 1 < n && a[i + 1][j] == '*') ++cnt;
                if(i + 1 < n && j + 1 < m && a[i + 1][j + 1] == '*') ++cnt;
                b[i][j] = cnt + '0';
            }
            cout << b[i][j];
        }   
        cout << endl;
    }
    return 0;
}
全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
预计下个星期就能开奖吧,哪位老哥来给个准信
华孝子爱信等:对接人上周说的是这周
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务