結果

問題 No.2310 [Cherry 5th Tune A] Against Regret
ユーザー miho-4miho-4
提出日時 2023-05-19 23:51:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 538,516 KB
最終ジャッジ日時 2024-05-10 07:33:26
合計ジャッジ時間 11,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 WA -
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import heapq
mod=998244353
n=int(input())
E=[list(map(int,input().split())) for _ in range(n+1)]
Q=int(input())
for _ in range(Q):
  K=int(input())
  d=dict()
  for _ in range(K):
    a,b,c=map(int,input().split())
    if (a,b) not in d:
      d[(a,b)]=c
    else:
      d[(a,b)]+=c
#  print("d=",d)
  tmp=[0]*(n+1)
  tmp[0]=1
  q=[]
  heapq.heappush(q,0)
  while q:
    x=heapq.heappop(q)
    for i in range(x,n+1):
      if (x,i) in d:
        tmp[i]+=tmp[x]*d[(x,i)]
        tmp[i]%=mod
        heapq.heappush(q,i)
      if E[x][i]:
        tmp[i]+=tmp[x]
        tmp[i]%=mod
        heapq.heappush(q,i)
  print(tmp[-1]%mod)
0