結果

問題 No.1916 Making Palindrome on Gird
ユーザー cureskolcureskol
提出日時 2022-04-29 21:59:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 3,754 bytes
コンパイル時間 2,536 ms
コンパイル使用メモリ 200,584 KB
実行使用メモリ 645,384 KB
最終ジャッジ日時 2023-09-11 13:06:26
合計ジャッジ時間 7,934 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,760 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 146 ms
7,232 KB
testcase_14 AC 46 ms
5,472 KB
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:30:3: 警告: inline variables are only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
   30 |   inline static constexpr T mod = MOD;
      |   ^~~~~~
main.cpp: 関数 ‘int main()’ 内:
main.cpp:108:12: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
  108 |       auto&[a,b]=que.front();
      |            ^
main.cpp:110:20: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
  110 |         const auto&[y,x]=it->first;
      |                    ^
main.cpp:115:20: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
  115 |         const auto&[y,x]=it->first;
      |                    ^
main.cpp:132:10: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
  132 |     auto [a,b]=que.front();que.pop();
      |          ^
main.cpp:133:20: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
  133 |     for(const auto&[yx,val]:a){
      |                    ^
main.cpp:136:20: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
  136 |         const auto&[y,x]=yx;
      |                    ^

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
#define debug(a) cerr<<#a<<":"<<a<<endl;
#define debug2(a,b) cerr<<"("<<#a<<","<<#b<<"):("<<a<<","<<b<<")"<<endl;
#define debug3(a,b,c) cerr<<"("<<#a<<","<<#b<<","<<#c<<"):("<<a<<","<<b<<","<<c<<")"<<endl;
#define debug4(a,b,c,d) cerr<<"("<<#a<<","<<#b<<","<<#c<<","<<#d<<"):("<<a<<","<<b<<","<<c<<","<<d<<")"<<endl;

template<typename T>
istream& operator>>(istream&is,vector<T>&v){
  for(T&p:v)is>>p;
  return is;
}
template<typename T>
ostream& operator<<(ostream&os,const vector<T>&v){
  if(&os==&cerr)os<<"[";
  for(int i=0;i<v.size();i++){
    os<<v[i];
    if(i+1<v.size())os<<(&os==&cerr?",":" ");
  }
  if(&os==&cerr)os<<"]";
  return os;
}

template<typename T,T MOD=998244353>
struct Mint{
  inline static constexpr T mod = MOD;
  T v;
  Mint():v(0){}
  Mint(signed v):v(v){}
  Mint(long long t){v=t%MOD;if(v<0)v+=MOD;}

  Mint pow(long long k){
    Mint res(1),tmp(v);
    while(k){
      if(k&1)res*=tmp;
      tmp*=tmp;
      k>>=1;
    }
    return res;
  }

  static Mint add_identity(){return Mint(0);}
  static Mint mul_identity(){return Mint(1);}

  Mint inv(){return pow(MOD-2);}

  Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;}
  Mint& operator/=(Mint a){return (*this)*=a.inv();}

  Mint operator+(Mint a) const{return Mint(v)+=a;}
  Mint operator-(Mint a) const{return Mint(v)-=a;}
  Mint operator*(Mint a) const{return Mint(v)*=a;}
  Mint operator/(Mint a) const{return Mint(v)/=a;}

  Mint operator+() const{return *this;}
  Mint operator-() const{return v?Mint(MOD-v):Mint(v);}

  bool operator==(const Mint a)const{return v==a.v;}
  bool operator!=(const Mint a)const{return v!=a.v;}

  static Mint comb(long long n,int k){
    Mint num(1),dom(1);
    for(int i=0;i<k;i++){
      num*=Mint(n-i);
      dom*=Mint(i+1);
    }
    return num/dom;
  }

  friend ostream& operator<<(ostream&os,const Mint &m){os<<m.v;return os;}
  friend istream& operator>>(istream&is,Mint &m){is>>m.v;m.v%=MOD;if(m.v<0)m.v+=MOD;return is;}
};
using ll=long long;
using mint=Mint<ll,1000000007>;

struct A{
  map<pair<int,int>,mint> a,b;
  A()=default;
  A(map<pair<int,int>,mint> a,map<pair<int,int>,mint> b):a(a),b(b){}
};

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int h,w;cin>>h>>w;
  vector<string> s(h);
  cin>>s;
  if(s[0][0]!=s.back().back()){
    cout<<0<<endl;
    return 0;
  }
  //debug(h);
  queue<A> que,nxt;
  map<pair<int,int>,mint> a,b;
  a[{0,0}]=b[{h-1,w-1}]=1;
  que.emplace(a,b);
  int aa=0,bb=h-1+w-1;

  vector<map<pair<int,int>,mint>> av(26),bv(26);
  while(bb-aa>1){
    while(que.size()){
      auto&[a,b]=que.front();
      for(auto it=a.begin();it!=a.end();it=a.erase(it)){
        const auto&[y,x]=it->first;
        if(y+1<h)av[s[y+1][x]-'a'][{y+1,x}]+=it->second;
        if(x+1<w)av[s[y][x+1]-'a'][{y,x+1}]+=it->second;
      }
      for(auto it=b.begin();it!=b.end();it=b.erase(it)){
        const auto&[y,x]=it->first;
        if(y)bv[s[y-1][x]-'a'][{y-1,x}]+=it->second;
        if(x)bv[s[y][x-1]-'a'][{y,x-1}]+=it->second;
      }
      REP(i,26){
        if(av[i].size() and bv[i].size())
          nxt.emplace(av[i],bv[i]);
        av[i].clear();bv[i].clear();
      }
      que.pop();
    }
    aa++;bb--;
    swap(que,nxt);
  }

  mint ans=0;
  while(que.size()){
    auto [a,b]=que.front();que.pop();
    for(const auto&[yx,val]:a){
      if(aa==bb)ans+=val*b[yx];
      else{
        const auto&[y,x]=yx;
        ans+=val*(b[{y+1,x}]+b[{y,x+1}]);
      }
    }
  }
  cout<<ans<<endl;
}

0