-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2419_costa.cpp
51 lines (41 loc) · 1.13 KB
/
2419_costa.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
#include <iostream>
using namespace std;
int main() {
int linhas, colunas, i, j, costa;
char letra;
cin >> linhas >> colunas;
char tabela[linhas][colunas];
for (i = 0; i < linhas; ++i)
for (j = 0; j < colunas; ++ j) {
cin >> letra;
tabela[i][j] = letra;
}
costa = 0;
for (i = 0; i < linhas; ++i)
for (j = 0; j < colunas; ++ j) {
if (tabela[i][j] == '.')
continue;
if (i == 0 || i == linhas - 1 || j == 0 || j == colunas - 1) {
costa++;
continue;
}
if (i > 0 && tabela[i - 1][j] == '.') {
costa++;
continue;
}
if (i < linhas-1 && tabela[i + 1][j] == '.') {
costa++;
continue;
}
if (j > 0 && tabela[i][j - 1] == '.') {
costa++;
continue;
}
if (j < colunas - 1 && tabela[i][j + 1] == '.') {
costa++;
continue;
}
}
cout << costa << endl;
return 0;
}