-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2234.cpp
83 lines (78 loc) · 1.3 KB
/
2234.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <stdio.h>
int map[50][50];
int visit[50][50];
int cnt=1;
int count;
int arr[251];
void dfs(int x,int y){
visit[x][y]=cnt;
count++;
if(!(map[x][y]&1)&&visit[x][y-1]==0){
dfs(x,y-1);
}
if(!(map[x][y]&2)&&visit[x-1][y]==0){
dfs(x-1,y);
}
if(!(map[x][y]&4)&&visit[x][y+1]==0){
dfs(x,y+1);
}
if(!(map[x][y]&8)&&visit[x+1][y]==0){
dfs(x+1,y);
}
}
int main(){
int m,n;
scanf("%d %d",&n,&m);
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
scanf("%d",&map[i][j]);
}
}
int maxroom=0;
int maxplus=0;
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
if(!visit[i][j]){
count=0;
dfs(i,j);
arr[cnt]=count;
if(count>maxroom){
maxroom=count;
}
cnt++;
}
}
}
int tmp;
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
if(j!=n-1){
if(visit[i][j]!=visit[i][j+1]){
tmp=arr[visit[i][j]]+arr[visit[i][j+1]];
if(tmp>maxplus){
maxplus=tmp;
}
}
}
if(i!=m-1){
if(visit[i][j]!=visit[i+1][j]){
tmp=arr[visit[i][j]]+arr[visit[i+1][j]];
if(tmp>maxplus){
maxplus=tmp;
}
}
}
}
}
printf("%d\n%d\n%d",cnt-1,maxroom,maxplus);
// for(int i=0;i<m;i++){
// for(int j=0;j<n;j++){
// printf("%d ",visit[i][j]);
// }
// printf("\n");
// }
// printf("\n");
// for(int i=0;i<10;i++){
// printf("%d ",arr[i]);
// }
}