-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpalpath.cpp
65 lines (61 loc) · 1.83 KB
/
palpath.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
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <math.h>
#include <assert.h>
using namespace std;
#define INF 1000000000
#define LL_INF 0xfffffffffffffffLL
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define PI acos(-1.0)
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int main() {
freopen("palpath.in", "r", stdin);
freopen("palpath.out", "w", stdout);
int n; cin >> n;
char grid[n][n];
for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) cin >> grid[i][j];
long long dp[2][n][n];
memset(dp, 0, sizeof dp);
int curDP = 0;
for (int i = 0; i < n; i++) {
dp[curDP][i][i] = 1;
}
for (int i = n - 1; i > 0; i--) {
for (int j = 0; j < n; j++) {
int row1 = j, col1 = i - j - 1;
if (col1 < 0) continue;
for (int k = 0; k < n; k++) {
int row2 = k, col2 = 2*n-i-k-1;
if (col2 >= n) continue;
if (grid[row1][col1] != grid[row2][col2]) continue;
dp[!curDP][row1][row2] += dp[curDP][row1][row2];
if (row1 + 1 < n) dp[!curDP][row1][row2] += dp[curDP][row1+1][row2];
if (row2 - 1 >= 0) dp[!curDP][row1][row2] += dp[curDP][row1][row2 - 1];
if (row1 + 1 < n && row2 - 1 >= 0) dp[!curDP][row1][row2] += dp[curDP][row1+1][row2 - 1];
dp[!curDP][row1][row2] %= 1000000007;
}
}
for (int x = 0; x < n; x++) for (int y = 0; y < n; y++) dp[curDP][x][y] = 0;
curDP = !curDP;
}
cout << dp[curDP][0][n - 1] << endl;
return 0;
}