結果
問題 | No.1050 Zero (Maximum) |
ユーザー | T1610 |
提出日時 | 2020-06-22 14:16:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 15 ms / 2,000 ms |
コード長 | 3,275 bytes |
コンパイル時間 | 1,364 ms |
コンパイル使用メモリ | 170,164 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 18:39:54 |
合計ジャッジ時間 | 2,228 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 4 ms
6,940 KB |
testcase_02 | AC | 5 ms
6,940 KB |
testcase_03 | AC | 12 ms
6,940 KB |
testcase_04 | AC | 15 ms
6,944 KB |
testcase_05 | AC | 12 ms
6,940 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | AC | 13 ms
6,940 KB |
testcase_08 | AC | 15 ms
6,940 KB |
testcase_09 | AC | 13 ms
6,944 KB |
testcase_10 | AC | 12 ms
6,944 KB |
testcase_11 | AC | 11 ms
6,940 KB |
testcase_12 | AC | 13 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 5 ms
6,940 KB |
testcase_16 | AC | 13 ms
6,940 KB |
testcase_17 | AC | 15 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) REP(i,0,n) #define REP(i,s,e) for(int i=(s); i<(int)(e); i++) #define repr(i, n) REPR(i, n, 0) #define REPR(i, s, e) for(int i=(int)(s-1); i>=(int)(e); i--) #define all(r) r.begin(),r.end() #define rall(r) r.rbegin(),r.rend() typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; const ll INF = 1e18; const ll MOD = 1e9 + 7; template<typename T> T chmax(T& a, const T& b){return a = (a > b ? a : b);} template<typename T> T chmin(T& a, const T& b){return a = (a < b ? a : b);} template <class T, int SZ> struct Mat { array<array<T, SZ>, SZ> d; const int n; Mat() : n(SZ) { array<T, SZ> tmp; d.fill(tmp); } Mat operator * (const Mat& mt) const { Mat ret; rep(i, SZ) rep(j, SZ) { rep(k, SZ) { ret.d[i][j] += (d[i][k] * mt.d[k][j]); } } return ret; } Mat& operator *= (const Mat& mt) { *this = *this * mt; return *this; } Mat& operator = (const Mat& mt) { d = mt.d; return *this; } array<T, SZ>& operator [](const int n) { return d[n]; } }; template <class T, int SZ> Mat<T, SZ> pow(Mat<T, SZ> mt, ll n) { Mat<T, SZ> ret; rep(i, SZ) ret.d[i][i] = 1LL; while(n > 0) { if(n&1LL) ret = ret * mt; mt = mt*mt; n >>= 1; } return ret; } template <typename T, typename U> T pow_fast(T x, U n) { T ret = (T)1; while(n) { if(n & (U)1) ret *= x; x *= x; n >>= 1; } return ret; } template <typename ModType, ModType MOD> struct ModInt { ModType val; ModInt() : val(0) {} ModInt(ModType x) : val(x % MOD) { if(val < 0) val += MOD; }; operator ModType() const { return val; } ModInt &operator+=(const ModInt &m) { val += m.val; if(val >= MOD) val -= MOD; return *this; } ModInt &operator-=(const ModInt &m) { val -= m.val; if(val < 0) val += MOD; return *this; } ModInt &operator*=(const ModInt &m) { (val *= m.val) %= MOD; return *this; } ModInt &operator/=(const ModInt &m) { *this *= m.inverse(); return *this; } ModInt operator+(const ModInt &m) const { return ModInt(*this) += m; } ModInt operator-(const ModInt &m) const { return ModInt(*this) -= m; } ModInt operator*(const ModInt &m) const { return ModInt(*this) *= m; } ModInt operator/(const ModInt &m) const { return ModInt(*this) /= m; } ModInt inverse() const { return pow_fast(*this, MOD - 2); } ModInt pow(ModType n) const {return pow_fast(*this, n); } friend std::ostream &operator<<(std::ostream &os, const ModInt &rhs) { os << rhs.val; return os; } friend std::istream &operator>>(std::istream &is, ModInt &rhs) { ModType value; is >> value; rhs = ModInt(value); return is; } }; using mint = ModInt<ll, MOD>; int main(){ int m, k; cin >> m >> k; Mat<mint, 51> mt; rep(i, m) rep(j, m) { mt[i][(i+j)%m] += mint(1); mt[i][(i*j)%m] += mint(1); } auto d = pow(mt, k); cout << d[0][0] << '\n'; return 0; }