#include <stdio.h>
#include <queue>
#include <algorithm>
#include <utility>
#include <cstring>
const int INF=987654321;
typedef std::pair<int, int> ip;
const int dy[4]={0,1,0,-1}, dx[4]={1,0,-1,0};
int n,m,cost[500][500][4],vis[500][500],res[500][500];
char str[500][500];
int abs(int a) {
return a<0 ?-a:a;
}
int gety(int y, int d) {
y+=dy[d];
if(y<0) y+=n;
else if(y>=n) y-=n;
return y;
}
int getx(int x, int d) {
x+=dx[d];
if(x<0) x+=m;
else if(x>=m) x-=m;
return x;
}
bool Check(int sy, int sx, int di) {
int len;
if(di==0||di==2) len=m;
else len=n;
std::queue<ip> que;
que.push(ip(sy,sx));
cost[sy][sx][di]=0;
while(!que.empty()) {
ip now=que.front();que.pop();
for(int k=0;k<4;k++) {
int ncost=cost[now.first][now.second][di];
if(k==di) ncost++;
else if((k+2)%4==di) ncost--;
int cy=gety(now.first,k), cx=getx(now.second,k);
if(str[cy][cx]==str[sy][sx]) {
if(cost[cy][cx][di]==-INF) {
cost[cy][cx][di]=ncost;
que.push(ip(cy,cx));
}
else {
int dist=0;
if(di==k || (k+2)%4==di) dist=1;
if(abs(cost[now.first][now.second][di]-cost[cy][cx][di])+dist==len) {
return true;
}
}
}
}
}
return false;
}
void BFS(int sy, int sx, bool chk) {
std::queue<ip> que;
que.push(ip(sy,sx));
if(chk) res[sy][sx]=-1;
vis[sy][sx]=1;
int sz=1;
while(!que.empty()) {
ip now=que.front();que.pop();
for(int k=0;k<4;k++) {
int cy=gety(now.first,k), cx=getx(now.second,k);
if(vis[cy][cx]==0&&str[cy][cx]==str[sy][sx]) {
que.push(ip(cy,cx));
vis[cy][cx]=1;
if(chk) res[cy][cx]=-1;
++sz;
}
}
}
if(chk) return;
que.push(ip(sy,sx));
res[sy][sx]=sz;
vis[sy][sx]=2;
while(!que.empty()) {
ip now=que.front();que.pop();
for(int k=0;k<4;k++) {
int cy=gety(now.first,k), cx=getx(now.second,k);
if(str[cy][cx]==str[sy][sx]&&vis[cy][cx]==1) {
que.push(ip(cy,cx));
vis[cy][cx]=2;
res[cy][cx]=sz;
}
}
}
}
int main() {
scanf("%d %d",&n,&m);
for(int i=0;i<n;i++)
scanf("%s",str[i]);
for(int i=0;i<n;i++) {
for(int j=0;j<m;j++) {
for(int k=0;k<4;k++)
cost[i][j][k]=-INF;
}
}
for(int i=0;i<n;i++) {
for(int j=0;j<m;j++) {
if(vis[i][j]==0) {
bool flag=false;
for(int k=0;k<2;k++) {
flag=Check(i,j,k);
if(flag) break;
}
BFS(i,j,flag);
}
}
}
for(int i=0;i<n;i++) {
for(int j=0;j<m;j++)
printf("%d ",res[i][j]);
puts("");
}
return 0;
}
Compilation message
YZ.cpp: In function 'int main()':
YZ.cpp:100:22: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d",&n,&m);
^
YZ.cpp:102:21: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%s",str[i]);
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
49 ms |
8036 KB |
Output is partially correct |
2 |
Correct |
33 ms |
8036 KB |
Output is correct |
3 |
Correct |
39 ms |
8036 KB |
Output is correct |
4 |
Correct |
43 ms |
8036 KB |
Output is correct |
5 |
Correct |
46 ms |
8036 KB |
Output is correct |
6 |
Correct |
46 ms |
8036 KB |
Output is correct |
7 |
Partially correct |
49 ms |
8036 KB |
Output is partially correct |
8 |
Correct |
39 ms |
8036 KB |
Output is correct |
9 |
Correct |
29 ms |
8036 KB |
Output is correct |
10 |
Partially correct |
36 ms |
8036 KB |
Output is partially correct |
11 |
Correct |
46 ms |
8036 KB |
Output is correct |
12 |
Correct |
49 ms |
8036 KB |
Output is correct |
13 |
Partially correct |
63 ms |
8036 KB |
Output is partially correct |
14 |
Partially correct |
53 ms |
8036 KB |
Output is partially correct |
15 |
Correct |
49 ms |
8036 KB |
Output is correct |
16 |
Partially correct |
46 ms |
8036 KB |
Output is partially correct |
17 |
Correct |
36 ms |
8036 KB |
Output is correct |
18 |
Correct |
36 ms |
8036 KB |
Output is correct |
19 |
Correct |
69 ms |
8036 KB |
Output is correct |
20 |
Correct |
43 ms |
8036 KB |
Output is correct |
21 |
Partially correct |
79 ms |
8036 KB |
Output is partially correct |
22 |
Partially correct |
53 ms |
8036 KB |
Output is partially correct |
23 |
Correct |
49 ms |
8036 KB |
Output is correct |
24 |
Correct |
46 ms |
8036 KB |
Output is correct |
25 |
Correct |
36 ms |
8036 KB |
Output is correct |
26 |
Correct |
0 ms |
8036 KB |
Output is correct |
27 |
Correct |
0 ms |
8036 KB |
Output is correct |
28 |
Correct |
0 ms |
8036 KB |
Output is correct |
29 |
Correct |
0 ms |
8036 KB |
Output is correct |
30 |
Correct |
0 ms |
8036 KB |
Output is correct |
31 |
Correct |
0 ms |
8036 KB |
Output is correct |
32 |
Correct |
0 ms |
8036 KB |
Output is correct |
33 |
Correct |
0 ms |
8036 KB |
Output is correct |
34 |
Correct |
0 ms |
8036 KB |
Output is correct |
35 |
Correct |
0 ms |
8036 KB |
Output is correct |
36 |
Correct |
0 ms |
8036 KB |
Output is correct |
37 |
Correct |
3 ms |
8036 KB |
Output is correct |
38 |
Correct |
0 ms |
8036 KB |
Output is correct |
39 |
Correct |
3 ms |
8036 KB |
Output is correct |
40 |
Correct |
0 ms |
8036 KB |
Output is correct |