結果

問題 No.1916 Making Palindrome on Gird
ユーザー 👑 NachiaNachia
提出日時 2022-04-29 21:36:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,994 ms / 3,000 ms
コード長 1,201 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 95,964 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-06-29 02:55:41
合計ジャッジ時間 15,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 91 ms
10,880 KB
testcase_16 AC 52 ms
8,064 KB
testcase_17 AC 190 ms
18,048 KB
testcase_18 AC 636 ms
41,472 KB
testcase_19 AC 595 ms
39,936 KB
testcase_20 AC 625 ms
40,704 KB
testcase_21 AC 638 ms
41,088 KB
testcase_22 AC 617 ms
40,832 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,994 ms
87,680 KB
testcase_29 AC 1,963 ms
87,296 KB
testcase_30 AC 1,940 ms
87,552 KB
testcase_31 AC 1,927 ms
87,424 KB
testcase_32 AC 1,964 ms
87,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <atcoder/modint>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)

using m32 = atcoder::static_modint<1000000007>;

int H,W;
map<pair<pair<int,int>, pair<int,int>>, m32> dp;
vector<string> S;

m32 recursion(int y1, int x1, int y2, int x2){
    if(y1 > y2 || x1 > x2){ return m32::raw(0); }
    if(S[y1][x1] != S[y2][x2]) return m32::raw(0);
    if(y1 + x1 + 1 >= x2 + y2) return m32::raw(1);
    if(dp.count({{y1,x1},{y2,x2}})) return dp[{{y1,x1},{y2,x2}}];
    m32 ans = 0;
    ans += recursion(y1+1, x1, y2-1, x2);
    ans += recursion(y1+1, x1, y2, x2-1);
    ans += recursion(y1, x1+1, y2-1, x2);
    ans += recursion(y1, x1+1, y2, x2-1);
    return dp[{{y1,x1},{y2,x2}}] = ans;
}

int main(){
    cin >> H >> W;
    S.resize(H);
    rep(y,H) cin >> S[y];
    m32 ans = recursion(0,0,H-1,W-1);
    cout << ans.val() << '\n';
    return 0;
}

struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0