結果
問題 | No.1086 桁和の桁和2 |
ユーザー | kriii |
提出日時 | 2020-06-19 22:20:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,990 bytes |
コンパイル時間 | 399 ms |
コンパイル使用メモリ | 48,956 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-03 14:57:38 |
合計ジャッジ時間 | 5,798 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 42 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 29 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 35 ms
5,376 KB |
testcase_14 | AC | 22 ms
5,376 KB |
testcase_15 | TLE | - |
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 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <stdio.h> #include <algorithm> using namespace std; int N, D[100100]; long long L[100100], R[100100]; const long long mod = 1000000007; struct matrix{ matrix(){ for (int i = 0; i < 9; i++) for (int j = 0; j < 9; j++) a[i][j] = 0; } long long a[9][9]; matrix operator +(matrix t){ matrix r; for (int i = 0; i < 9; i++) for (int j = 0; j < 9; j++){ r.a[i][j] = (a[i][j] + t.a[i][j]) % mod; } return r; } matrix operator *(matrix t){ matrix r; for (int i = 0; i < 9; i++) for (int j = 0; j < 9; j++){ r.a[i][j] = 0; for (int k = 0; k < 9; k++){ r.a[i][j] = (r.a[i][j] + a[i][k] * t.a[k][j]) % mod; } } return r; } }iden, all, base; pair<matrix, matrix> fpow(matrix a, long long n) { if (n == 0) return { iden, matrix() }; if (n == 1) return { a, iden }; auto half = fpow(a * a, n / 2); half.second = half.second * (iden + a); if (n % 2){ half.second = half.second + half.first; half.first = half.first * a; } return half; } int main() { for (int i = 0; i < 9; i++){ iden.a[i][i] = 1; for (int j = 0; j < 9; j++) all.a[i][j] = 1; } for (int i = 0; i < 9; i++) for (int j = 0; j < 10; j++) base.a[i][(i + j) % 9]++; scanf ("%d", &N); for (int i = 0; i < N; i++) scanf ("%lld", &L[i]); for (int i = 0; i < N; i++) scanf ("%lld", &R[i]); for (int i = 0; i < N; i++) scanf ("%d", &D[i]); int s = 0; while (s < N && D[s] == 0) s++; for (int i = s; i < N; i++) if (D[i] == 0){ puts("0"); return 0; } for (int i = s; i < N; i++){ L[i - s] = L[i]; R[i - s] = R[i]; D[i - s] = D[i]; } N -= s; long long ans = 1; int ld = 0; for (int i = 0; i < N; i++){ int nd = (D[i] + 9 - ld) % 9; auto low = fpow(base, L[i]); auto upp = fpow(base, R[i] - L[i]); matrix p = all * low.first * upp.second; ans = ans * (p.a[0][nd] + (nd == 0)) % mod; ld = nd; } bool g = 1; for (int i = 0; i < N; i++) if (D[i] != 9) g = 0; if (g) ans = (ans + mod - 1) % mod; printf ("%lld\n", ans); return 0; }