結果
問題 | No.840 ほむほむほむら |
ユーザー | tempura_pp |
提出日時 | 2019-06-12 02:46:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 152 ms / 4,000 ms |
コード長 | 2,437 bytes |
コンパイル時間 | 1,047 ms |
コンパイル使用メモリ | 102,804 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 05:29:33 |
合計ジャッジ時間 | 2,930 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 5 ms
5,248 KB |
testcase_03 | AC | 22 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 9 ms
5,248 KB |
testcase_08 | AC | 39 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 12 ms
5,248 KB |
testcase_13 | AC | 99 ms
5,248 KB |
testcase_14 | AC | 14 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 25 ms
5,248 KB |
testcase_18 | AC | 125 ms
5,248 KB |
testcase_19 | AC | 152 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 4 ms
5,248 KB |
testcase_23 | AC | 145 ms
5,248 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 5 ms
5,248 KB |
testcase_27 | AC | 145 ms
5,248 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) typedef long long ll; const int mod=998244353 ; template<typename T> struct Matrix{ int h,w; vector<T> a; Matrix(int n_=0):h(n_),w(n_),a(n_*n_){} Matrix(int n_, int m_):h(n_),w(m_),a(n_*m_){} Matrix(int n_, int m_, vector<T> a_):h(n_),w(m_),a(a_){} T& get(int r,int c){return a[r*w+c];} T get(int r,int c)const{return a[r*w+c];} Matrix& operator+=(const Matrix& m) { assert(h == m.h && w == m.w); for (int i = 0; i < w*h; ++i)a[i] += m.a[i]; } Matrix& operator-=(const Matrix& m) { assert(h == m.h && w == m.w); for (int i = 0; i < w*h; ++i)a[i] -= m.a[i]; } Matrix& operator*=(const Matrix& m) { assert(w == m.h); Matrix ret(h, m.w); for (int i = 0; i < h; ++i) { for (int j = 0; j < m.w; ++j) { for (int k = 0; k < w; ++k) { ret.a[i * m.w + j] += a[i * w + k] * m.a[k * m.w + j]%mod; } ret.a[i * m.w + j] %= mod; } } return (*this) = ret; } Matrix operator+(const Matrix& m) const { return Matrix(*this) += m; } Matrix operator-(const Matrix& m) const { return Matrix(*this) -= m; } Matrix operator*(const Matrix& m) const { return Matrix(*this) *= m; } }; template<typename T> Matrix<T> unit(int n){ Matrix<T> ret(n); rep(i,n)ret.get(i,i)=1; return ret; } template<typename T> Matrix<T> matpow(Matrix<T> a,ll n){ assert(a.h==a.w); Matrix<T> ret=unit<T>(a.h); while(n){ if(n&1)ret*=a; a*=a; n>>=1; } return ret; } int main(){ ll n,m; cin>>n>>m; Matrix<ll> a(m*m*m); rep(i,m)rep(j,m)rep(k,m){ int cur=i*m*m+j*m+k; int nxt1=i*m*m+j*m+(k+1)%m; int nxt2=i*m*m+(j+k)%m*m+k; int nxt3=(i+j)%m*m*m+j*m+k; a.get(nxt1,cur)+=1; a.get(nxt2,cur)+=1; a.get(nxt3,cur)+=1; } auto ret=matpow(a,n); ll ans=0; rep(i,m*m){ ans+=ret.get(0,i); } cout<<ans%mod<<endl; return 0; }