-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBear and Species.cpp
More file actions
120 lines (112 loc) · 3.21 KB
/
Copy pathBear and Species.cpp
File metadata and controls
120 lines (112 loc) · 3.21 KB
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
#include <bits/stdc++.h>
#define ll unsigned long long
using namespace std;
int bearSpecies(int);
void _bearSpecies(char**, int**, int, ll&);
bool findPosition(char**, int**, int&, int&, int);
bool isSafe(int, int, int, char**, int**, int);
int main(void){
int t, n;
cin >> t;
while(t--){
cin >> n;
cout << bearSpecies(n) << endl;
}
return 0;
}
int bearSpecies(int n){
ll res = 0;
int flag = 0;
char **arr = new char*[n];
int **sol = new int*[n];
for(int i = 0; i < n; i++){
arr[i] = new char[n];
sol[i] = new int[n];
}
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++){
cin >> arr[i][j];
sol[i][j] = 0;
}
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
if(arr[i][j] == '?')
flag = 1;
if(flag == 0)
return 0;
_bearSpecies(arr, sol, n, res);
return res;
}
bool findPosition(char **arr, int **sol, int &row, int &col, int n){
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
if(arr[i][j] == '?' && sol[i][j] == 0){
row = i;
col = j;
return true;
}
return false;
}
void _bearSpecies(char **arr, int **sol, int n, ll &res){
int row, col;
if(!findPosition(arr, sol, row, col, n)){
res = (res + 1) % 1000000007;
return;
}
for(int i = 1; i <= 3; i++){
if(isSafe(i, row, col, arr, sol, n)){
sol[row][col] = i;
_bearSpecies(arr, sol, n, res);
sol[row][col] = 0;
}
}
}
bool isSafe(int i, int row, int col, char **arr, int **sol, int n){
int xMove[] = {-1, 0, 1, 0};
int yMove[] = {0, 1, 0, -1};
if(i == 1){
for(int k = 0; k < 4; k++){
int _x = row + xMove[k];
int _y = col + yMove[k];
if(0 <= _x && _x < n && 0 <= _y && _y < n){
if(arr[_x][_y] != '.')
return false;
}
}
return true;
}
else{
if(i == 2){
for(int k = 0; k < 4; k++){
int _x = row + xMove[k];
int _y = col + yMove[k];
if(0 <= _x && _x < n && 0 <= _y && _y < n){
if(arr[_x][_y] == 'B' || arr[_x][_y] == '.' || arr[_x][_y] == '?'){
if(arr[_x][_y] == '?' && (sol[_x][_y] == 1 || sol[_x][_y] == 3))
return false;
}
else{
return false;
}
}
}
return true;
}
if(i == 3){
for(int k = 0; k < 4; k++){
int _x = row + xMove[k];
int _y = col + yMove[k];
if(0 <= _x && _x < n && 0 <= _y && _y < n){
if(arr[_x][_y] == 'P' || arr[_x][_y] == '.' || arr[_x][_y] == '?'){
if(arr[_x][_y] == '?' && (sol[_x][_y] == 1 || sol[_x][_y] == 2))
return false;
}
else{
return false;
}
}
}
return true;
}
}
}