結果
問題 | No.1112 冥界の音楽 |
ユーザー | roaris |
提出日時 | 2020-07-10 22:43:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,966 bytes |
コンパイル時間 | 2,632 ms |
コンパイル使用メモリ | 210,196 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 10:05:29 |
合計ジャッジ時間 | 13,643 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 331 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 83 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 349 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 446 ms
6,816 KB |
testcase_18 | AC | 435 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 57 ms
6,816 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 311 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i=0; i<n; i++) #define pb push_back //#define int long long typedef vector<long long> vec; typedef vector<vec> mat; const long long MOD = 1000000007; int K, M; long long N; int serial[10][10][10]; bool ok[220]; mat mat_mul(mat A, mat B) { mat C(A.size(), vec(B[0].size())); for (int i=0; i<A.size(); i++) { for (int j=0; j<B[0].size(); j++) { for (int k=0; k<A[0].size(); k++) { C[i][j] += A[i][k]*B[k][j]; C[i][j] %= MOD; } } } return C; } mat mat_pow(mat A, int n) { mat res(A.size(), vec(A.size())); for (int i=0; i<A.size(); i++) { res[i][i] = 1; } while (n > 0) { if (n & 1) { res = mat_mul(A, res); } n >>= 1; A = mat_mul(A, A); } return res; } mat f(mat A, int n) { if (n==1) return A; mat res1 = mat_pow(A, n/2); mat res2 = mat_pow(A, n-n/2); return mat_mul(res1, res2); } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> K >> M >> N; if (N==3) { int ans = 0; rep(i, M) { int P, Q, R; cin >> P >> Q >> R; if (P==1 && R==1) ans++; } cout << ans << endl; exit(0); } int c = 0; rep(i, K) rep(j, K) rep(k, K) { serial[i][j][k] = c; c++; } rep(i, M) { int P, Q, R; cin >> P >> Q >> R; ok[serial[P-1][Q-1][R-1]] = true; } mat A(c, vec(c)); rep(i, K) rep(j, K) rep(k, K) rep(l, K) { if (ok[serial[i][j][k]] && ok[serial[j][k][l]]) { A[serial[i][j][k]][serial[j][k][l]] = 1; } } mat res = f(A, N-3); long long ans = 0; rep(i, K) rep(j, K) rep(k, K) rep(l, K) { ans += res[serial[0][i][j]][serial[k][l][0]]; ans %= MOD; } cout << ans << endl; }