이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
template<typename T>
void out(T x) { cout << x << endl; exit(0); }
#define watch(x) cout << (#x) << " is " << (x) << endl
const int maxn = 1010;
int n, m;
string g[maxn];
bool viz[maxn][maxn];
int cc = 0;
void dfs(int x, int y, char c) {
if (x<0 || y<0 || x>=n || y>=m) return;
if (viz[x][y]) return;
if (g[x][y]!=c) return;
viz[x][y] = true;
dfs(x-1,y,c);
dfs(x+1,y,c);
dfs(x,y-1,c);
dfs(x,y+1,c);
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n>>m;
for (int i=0; i<n; i++) {
cin>>g[i];
}
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
if (g[i][j]=='*') {
continue;
}
if (!viz[i][j]) {
cc++;
dfs(i,j,g[i][j]);
}
}
}
cout<<cc<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |