結果
| 問題 |
No.1112 冥界の音楽
|
| コンテスト | |
| ユーザー |
mkawa2
|
| 提出日時 | 2020-07-10 22:40:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 968 bytes |
| コンパイル時間 | 139 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 53,884 KB |
| 最終ジャッジ日時 | 2024-10-11 10:02:44 |
| 合計ジャッジ時間 | 21,809 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 TLE * 6 |
ソースコード
import numpy as np
import sys
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def main(n):
if n == 3:
ans = 0
for p, q, r in pqr:
if p == 1 and r == 1: ans += 1
print(ans)
exit()
start = []
end = []
to = np.zeros((m, m), dtype=object)
for i in range(m):
if pqr[i][0] == 1: start.append(i)
if pqr[i][2] == 1: end.append(i)
for j in range(m):
if pqr[i][1:] == pqr[j][:2]: to[i][j] = 1
# print(to)
cnt = np.eye(m, dtype=object)
n -= 3
while n:
if n & 1: cnt = np.dot(cnt, to) % md
to = np.dot(to, to) % md
n >>= 1
# print(cnt)
ans = 0
for s in start:
for e in end:
ans += cnt[s][e]
ans %= md
print(ans)
md=10**9+7
k,m,n=MI()
pqr=LLI(m)
main(n)
mkawa2