結果
問題 | No.1810 RGB Biscuits |
ユーザー | polylogK |
提出日時 | 2021-11-08 17:48:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,355 bytes |
コンパイル時間 | 887 ms |
コンパイル使用メモリ | 58,448 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 13:25:54 |
合計ジャッジ時間 | 1,664 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
/* WA: Overflow */ #include <stdio.h> #include <vector> constexpr int MOD = 1'000'000'007; struct matrix_t { using i64 = int; std::vector<std::vector<i64>> matrix; matrix_t(): matrix(3, std::vector<i64>(3)) {} matrix_t(const std::vector<std::vector<i64>>& matrix): matrix(matrix) {} static matrix_t E() { return matrix_t({{1, 0, 0}, {0, 1, 0}, {0, 0, 1}}); } std::vector<i64>& operator[](int k) { return matrix[k]; } inline matrix_t operator*(const matrix_t& r) const { matrix_t ret; for(size_t i = 0; i < 3; i++) { for(size_t j = 0; j < 3; j++) { for(size_t k = 0; k < 3; k++) { (ret[i][j] += matrix[i][k] * r.matrix[k][j]) %= MOD; } } } return std::move(ret); } inline matrix_t operator^=(long long k) { matrix_t tmp = E(); while(k) { if(k & 1) tmp = tmp * (*this); (*this) = (*this) * (*this); k >>= 1; } matrix.swap(tmp.matrix); return *this; } }; int main() { int A, B, N; scanf("%d%d%d", &A, &B, &N); using i64 = long long; while(N--) { i64 T; scanf("%lld", &T); matrix_t matrix({{A, B, 1}, {1, 0, 0}, {0, 0, 0}}); matrix ^= T / 2; if(T % 2) { matrix = matrix_t({{1, 0, 0}, {0, 1, 0}, {A, B, 1}}) * matrix; } int ans = 0; for(size_t i = 0; i < 3; i++) for(size_t j = 0; j < 2; j++) ans = (ans + matrix[i][j]) % MOD; printf("%d\n", ans); } return 0; }