結果
問題 | No.840 ほむほむほむら |
ユーザー | qisnotnq |
提出日時 | 2019-06-23 12:41:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,682 bytes |
コンパイル時間 | 780 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 01:02:25 |
合計ジャッジ時間 | 5,126 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
コンパイルメッセージ
main.cpp: In instantiation of 'modulo<T, M> modulo<T, M>::operator+=(const modulo<T, M>&) [with T = long long unsigned int; T M = 998244353]': main.cpp:119:49: required from here main.cpp:25:5: warning: no return statement in function returning non-void [-Wreturn-type] 25 | } | ^
ソースコード
#include <iostream> #include <tuple> #include <vector> #define REP(i,n) for (int i=0;i<(n);++i) template <class T, T M> class modulo { public: T data; modulo(T data) : data(data % M) { } modulo operator+(const modulo &x) const { return modulo(data + x.data); } modulo operator*(const modulo &x) const { return modulo(data * x.data); } modulo operator+=(const modulo &x) { data = (data + x.data) % M; } modulo operator*=(const modulo &x) { data = (data * x.data) % M; } }; template <class T> class matrix { public: size_t M; size_t N; std::vector<std::vector<T>> data; matrix(size_t M, size_t N) : M(M), N(N) { data.resize(M); for (int i = 0; i < M; ++i) { data[i].assign(N, 0); } } matrix operator*(const matrix &x) const { matrix result(M, x.N); for (int i = 0; i < M; ++i) { for (int j = 0; j < x.N; ++j) { T temp = 0; for (int k = 0; k < N; ++k) { temp += data[i][k] * x.data[k][j]; } result.data[i][j] = temp; } } return result; } template <class NonNegativeInteger> matrix pow(NonNegativeInteger n); }; template <class T> matrix<T> unit_matrix(size_t n) { matrix<T> result(n, n); for (int i = 0; i < n; ++i) { result.data[i][i] = 1; } return result; } template <class T> template <class NonNegativeInteger> matrix<T> matrix<T>::pow(NonNegativeInteger n) { matrix result = unit_matrix<T>(N); matrix x(*this); while (n) { if (n & 1) { result = result * x; } x = x * x; n >>= 1; } return result; } using namespace std; using ull = unsigned long long; constexpr ull MOD = 998244353; int N; int K; int encode(int x, int y, int z) { return z * K*K + y * K + x; } tuple<int, int, int> decode(int b) { int x = b % K; int y = (b / K) % K; int z = b / (K*K); return make_tuple(x, y, z); } int main() { cin >> N >> K; int K3 = K * K * K; using M = modulo<ull, MOD>; matrix<M> A(K3, K3); REP(b, K3) { int x, y, z; tie(x, y, z) = decode(b); A.data[encode((x + 1) % K, y, z)][b] += 1; A.data[encode(x, (y + x) % K, z)][b] += 1; A.data[encode(x, y, (z + y) % K)][b] += 1; } matrix<M> u(K3, 1); u.data[0][0] = 1; matrix<M> B = A.pow(N); matrix<M> v = B * u; M result(0); REP(b, K * K) { result += v.data[b][0]; } cout << result.data << endl; return 0; }