Advertisement
Spocoman

06. Minesweeper

Feb 9th, 2024
905
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.82 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <memory>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.     int rows, columns;
  9.     cin >> rows >> columns;
  10.     cin.ignore();
  11.  
  12.     unique_ptr<unique_ptr<int[]>[]> matrix = make_unique<unique_ptr<int[]>[]>(rows);
  13.  
  14.     for (int i = 0; i < rows; i++) {
  15.         matrix[i] = make_unique<int[]>(columns);
  16.     }
  17.  
  18.     string line;
  19.  
  20.     for (int row = 0; row < rows; row++) {
  21.         getline(cin, line);
  22.         for (int col = 0; col < line.length(); col++) {
  23.             if (line[col] == '!') {
  24.                 for (int r = max(row - 1, 0); r <= min(row + 1, rows - 1); r++) {
  25.                     for (int c = max(col - 1, 0); c <= min(col + 1, columns - 1); c++) {
  26.                         matrix[r][c]++;
  27.                     }
  28.                 }
  29.             }
  30.         }
  31.     }
  32.  
  33.     for (int i = 0; i < rows; i++) {
  34.         for (int j = 0; j < columns; j++) {
  35.             cout << matrix[i][j];
  36.         }
  37.         cout << endl;
  38.     }
  39.  
  40.     return 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement