結果

問題 No.2310 [Cherry 5th Tune A] Against Regret
ユーザー miho-4miho-4
提出日時 2023-05-20 00:09:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 526 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 764,976 KB
最終ジャッジ日時 2024-05-10 07:48:25
合計ジャッジ時間 10,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
60,800 KB
testcase_01 AC 56 ms
60,160 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
import copy
mod=998244353
n=int(input())
Edge=[list(map(int,input().split())) for _ in range(n+1)]
Q=int(input())
for _ in range(Q):
  E=copy.deepcopy(Edge)
  K=int(input())
  for _ in range(K):
    a,b,c=map(int,input().split())
    E[a][b]+=c
  tmp=[0]*(n+1)
  tmp[0]=1
  q=[]
  heapq.heappush(q,0)
  while q:
    x=heapq.heappop(q)
    for i in range(x+1,n+1):
      if 0<E[x][i]:
        tmp[i]+=tmp[x]*E[x][i]
        tmp[i]%=mod
        heapq.heappush(q,i)
  print(tmp[-1]%mod)
0