結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | i_am_noob |
提出日時 | 2023-02-11 04:07:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 85 ms / 3,000 ms |
コード長 | 1,380 bytes |
コンパイル時間 | 1,738 ms |
コンパイル使用メモリ | 202,284 KB |
実行使用メモリ | 35,172 KB |
最終ジャッジ日時 | 2024-07-07 20:29:37 |
合計ジャッジ時間 | 3,771 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 26 ms
12,544 KB |
testcase_14 | AC | 16 ms
9,984 KB |
testcase_15 | AC | 31 ms
13,824 KB |
testcase_16 | AC | 23 ms
12,160 KB |
testcase_17 | AC | 53 ms
19,072 KB |
testcase_18 | AC | 68 ms
20,352 KB |
testcase_19 | AC | 68 ms
20,352 KB |
testcase_20 | AC | 68 ms
20,224 KB |
testcase_21 | AC | 68 ms
20,352 KB |
testcase_22 | AC | 68 ms
20,224 KB |
testcase_23 | AC | 19 ms
34,880 KB |
testcase_24 | AC | 16 ms
35,172 KB |
testcase_25 | AC | 15 ms
34,920 KB |
testcase_26 | AC | 18 ms
33,892 KB |
testcase_27 | AC | 15 ms
34,560 KB |
testcase_28 | AC | 85 ms
20,352 KB |
testcase_29 | AC | 84 ms
20,224 KB |
testcase_30 | AC | 84 ms
20,352 KB |
testcase_31 | AC | 83 ms
20,224 KB |
testcase_32 | AC | 84 ms
20,352 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; using pii=pair<int,int>; #define all(a) a.begin(),a.end() #define pb push_back #define sz(a) ((int)a.size()) const int maxn=205,mod=1000000007; int add(int& x, int y){x+=y; if(x>=mod) x-=mod; return x;} int n,m,dp[maxn][maxn][maxn]; char a[maxn][maxn],b[maxn][maxn]; bool valid(int x, int y){return x>=0&&x<n&&y>=0&&y<m;} signed main(){ ios_base::sync_with_stdio(0),cin.tie(0); cin >> n >> m; int k=(n+m)/2; for(int i=0; i<n; ++i) for(int j=0; j<m; ++j) cin >> a[i][j],b[n-1-i][m-1-j]=a[i][j]; dp[0][0][0]=1; for(int i=0; i<k-1; ++i){ for(int j1=0; j1<=i; ++j1) for(int j2=0; j2<=i; ++j2) if(valid(j1,i-j1)&&valid(j2,i-j2)){ if(a[j1][i-j1]!=b[j2][i-j2]){ dp[i][j1][j2]=0; continue; } for(auto t1: {0,1}) for(auto t2: {0,1}){ int x1=j1+t1,y1=i+1-x1,x2=j2+t2,y2=i+1-x2; if(valid(x1,y1)&&valid(x2,y2)&&a[x1][y1]==b[x2][y2]) add(dp[i+1][j1+t1][j2+t2],dp[i][j1][j2]); } } } int res=0; for(int j1=0; j1<k; ++j1) for(int j2=0; j2<k; ++j2) if(valid(j1,k-1-j1)&&valid(j2,k-1-j2)&&a[j1][k-1-j1]==b[j2][k-1-j2]){ int x1=j1,y1=k-1-j1,x2=n-1-j2,y2=m-1-(k-1-j2); if(abs(x1-x2)+abs(y1-y2)<=1) add(res,dp[k-1][j1][j2]); } cout << res << "\n"; }