이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// "Say:He is the Most Merciful,We have believed in him and upon him we have relied" [67:29]
#include<bits/stdc++.h>
using namespace std;
vector<vector<int>>v(1001, vector<int>(1001)), vis(1001, vector<int>(1001));
int n, m;
vector<pair<int,int>> dx = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}};
void dfs(int i, int j, int color){
//cout << i << " " << j << " " << color << "\n";
if(i < 1 or i > n or j < 1 or j > m){
return;
}
if(vis[i][j]){
return;
}
if(v[i][j] != color){
return;
}
vis[i][j] = 1;
for(pair<int,int> u : dx){
dfs(i+u.first, j+u.second, color);
}
}
int main(){
cin >> n >> m;
for(int i=1; i<=n; i++){
for(int j=1; j<=m; j++){
char x; cin >> x;
if(x == 'T'){
v[i][j] = 1;
}
if(x == 'B'){
v[i][j] = 2;
}
}
}
int ans = 0;
for(int i=1; i<=n; i++){
for(int j=1; j<=m; j++){
if(vis[i][j] == 0 and v[i][j]){
ans++;
dfs(i, j, v[i][j]);
}
}
}
cout << ans << "\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |