結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2021-01-22 22:30:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,642 bytes |
コンパイル時間 | 456 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 120,960 KB |
最終ジャッジ日時 | 2024-12-28 03:05:35 |
合計ジャッジ時間 | 14,081 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
54,016 KB |
testcase_01 | AC | 42 ms
53,888 KB |
testcase_02 | AC | 40 ms
54,016 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 158 ms
87,840 KB |
testcase_24 | AC | 109 ms
81,636 KB |
testcase_25 | AC | 341 ms
98,944 KB |
testcase_26 | AC | 509 ms
108,988 KB |
testcase_27 | AC | 311 ms
100,892 KB |
testcase_28 | AC | 272 ms
93,392 KB |
testcase_29 | AC | 285 ms
100,736 KB |
testcase_30 | AC | 267 ms
93,440 KB |
testcase_31 | AC | 207 ms
91,008 KB |
testcase_32 | AC | 225 ms
97,152 KB |
testcase_33 | AC | 457 ms
106,624 KB |
testcase_34 | AC | 462 ms
107,132 KB |
testcase_35 | AC | 365 ms
111,360 KB |
testcase_36 | AC | 300 ms
105,112 KB |
testcase_37 | AC | 192 ms
96,128 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 197 ms
107,648 KB |
testcase_44 | AC | 153 ms
100,128 KB |
testcase_45 | AC | 178 ms
107,392 KB |
testcase_46 | AC | 51 ms
67,200 KB |
testcase_47 | AC | 43 ms
54,016 KB |
ソースコード
""" N~2N回目の間に頂点Nの更新があった場合はOUT O(N)くらいで何とかする必要が… Nからさかのぼり、行けない点を全部消す あとはトポロジカルソートをして数え上げればよい """ import sys from sys import stdin from collections import deque N,M = map(int,stdin.readline().split()) mod = 10**9+7 lis = [ [] for i in range(N+1) ] rlis = [ [] for i in range(N+1) ] inNum = [0] * (N+1) for i in range(M): u,v,l,a = map(int,stdin.readline().split()) lis[u].append((v,l,a)) rlis[v].append(u) exist = [0] * (N+1) exist[N] = 1 q = deque([N]) while q: v = q.popleft() for nex in rlis[v]: if 0 == exist[nex]: exist[nex] = 1 q.append(nex) if not exist[0]: print (0) sys.exit() q = deque([0]) exist[0] = 2 while q: v = q.popleft() for nex,tmp1,tmp2 in lis[v]: if 1 == exist[nex]: exist[nex] = 2 q.append(nex) for v in range(N+1): if exist[v] == 2: for nex,tmp1,tmp2 in lis[v]: inNum[nex] += 1 ans = [[0,0] for i in range(N+1)] ans[0] = [0,1] if inNum[0] != 0: print ("INF") sys.exit() q = deque([0]) while q: v = q.popleft() if v == N: print (ans[N][0]) #print (ans) sys.exit() for nex,l,a in lis[v]: if exist[nex] != 2: continue ans[nex][0] += ans[v][0] + ans[v][1] * a * l ans[nex][0] %= mod ans[nex][1] += ans[v][1] * a ans[nex][1] %= mod inNum[nex] -= 1 if inNum[nex] == 0: q.append(nex) print ("INF")