-
Notifications
You must be signed in to change notification settings - Fork 55
/
counting_rooms.cpp
133 lines (99 loc) · 2.91 KB
/
counting_rooms.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//:):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)
//:):):):):)::):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):
//:):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)
//:):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)
//:):) -----------------------------------------------------------:):):):)
//:):)| -------- ------- ------- -------- |:):):)
//:):)| | | | | | | | | |:):):)
//:):)| | | | | | | | | |:):):)
//:):)| -------- | | |------- |-------| -------- |:):):)
//:):)| | | | | \ | | | |:):):)
//:):)| | | | | \ | | | |:):):)
//:):)| -------- ------- | \ ------- -------- |:):):)
//:):) ----------------------------------------------------------- :):):):
//:):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)
//:):):):):)::):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):
//:):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)
//:):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define forf(i, k, n) for (int i = k; i < n; i++)
int vis[1001][1001] ;
int p[]= {0,0,1,-1} ;
int q[]= {1,-1,0,0} ;
void dfs(int i, int j, int &n, int &m ){
vis[i][j]=1 ;
for(int k=0;k<4;k++){
int x= i+p[k] ;
int y= j+q[k] ;
if(x>=0 && x<n && y>=0 && y<m){
if(vis[x][y]==0){
dfs(x,y,n,m) ;
}
}
}
}
void solve() {
int n , m ;
cin >> n >> m ;
char arr[n][m] ;
forf(i,0,n){
forf(j,0,m){
cin >> arr[i][j] ;
if(arr[i][j]=='#') vis[i][j]=1 ;
else vis[i][j]=0 ;
}
}
int ans=0 ;
for(int i=0;i<n;i++){
forf(j,0,m){
if(vis[i][j]==0){
ans++ ;
dfs(i,j,n,m) ;
}
}
}
cout<<ans<<endl ;
}
int32_t main()
{
int t=1;
// cin >> t;
for(int i=1;i<=t;i++){
solve();
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
struct Node {
int data;
struct Node *left, *right;
};
Node* newNode(int data)
{
Node* temp = new Node;
temp->data = data;
temp->left = temp->right = NULL;
return temp;
}
void printInorder(struct Node* node)
{
if (node == NULL)
return;
printInorder(node->left);
cout << node->data << " ";
printInorder(node->right);
}
int main()
{
struct Node* root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
root->left->left = newNode(4);
root->left->right = newNode(5);
cout << "\nInorder traversal of binary tree is \n";
printInorder(root);
return 0;
}