Submission #251337

#TimeUsernameProblemLanguageResultExecution timeMemory
251337BruteforcemanZoo (COCI19_zoo)C++11
45 / 110
2099 ms7288 KiB
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1005;
bool vis[maxn][maxn];
char s[maxn][maxn];
const int dx[] = {0, 0, -1, 1};
const int dy[] = {-1, 1, 0, 0};
int n, m;
bool inside(int i, int j) {
  return (0 <= i && i < n) && (0 <= j && j < m);
}

void dfs(int x, int y) {
  vis[x][y] = true;
  for(int k = 0; k < 4; k++) {
    int i = x + dx[k];
    int j = y + dy[k];
    if(inside(i, j) && s[i][j] == s[0][0] && !vis[i][j]) {
      dfs(i, j);
    }
  }
}

int main() {
  scanf("%d %d", &n, &m);
  int total = 0;
  for(int i = 0; i < n; i++) {
    scanf("%s", s[i]);
    for(int j = 0; j < m; j++) {
      total += (s[i][j] != '*');
    }
  }
  int ans = 0;
  while(true) {
    dfs(0, 0);
    char inv = (s[0][0] == 'T') ? 'B' : 'T';
    int cover = 0;
    for(int i = 0; i < n; i++) {
      for(int j = 0; j < m; j++) {
        if(vis[i][j]) {
          ++cover;
          s[i][j] = inv;
          vis[i][j] = false;
        }
      }
    }
    ++ans;
    if(cover == total) break; 
  }
  printf("%d\n", ans);
  return 0;
}

Compilation message (stderr)

zoo.cpp: In function 'int main()':
zoo.cpp:25:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &n, &m);
   ~~~~~^~~~~~~~~~~~~~~~~
zoo.cpp:28:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%s", s[i]);
     ~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...