結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2021-01-22 22:30:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,642 bytes |
コンパイル時間 | 423 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 120,832 KB |
最終ジャッジ日時 | 2024-06-08 16:03:54 |
合計ジャッジ時間 | 13,776 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
53,632 KB |
testcase_01 | AC | 46 ms
53,760 KB |
testcase_02 | AC | 43 ms
54,272 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 | 149 ms
87,808 KB |
testcase_24 | AC | 108 ms
81,536 KB |
testcase_25 | AC | 336 ms
98,932 KB |
testcase_26 | AC | 439 ms
108,928 KB |
testcase_27 | AC | 298 ms
100,860 KB |
testcase_28 | AC | 236 ms
93,056 KB |
testcase_29 | AC | 275 ms
100,736 KB |
testcase_30 | AC | 242 ms
93,056 KB |
testcase_31 | AC | 193 ms
90,996 KB |
testcase_32 | AC | 224 ms
96,896 KB |
testcase_33 | AC | 408 ms
106,496 KB |
testcase_34 | AC | 433 ms
107,008 KB |
testcase_35 | AC | 328 ms
110,976 KB |
testcase_36 | AC | 270 ms
105,124 KB |
testcase_37 | AC | 182 ms
96,000 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 192 ms
107,520 KB |
testcase_44 | AC | 143 ms
99,992 KB |
testcase_45 | AC | 194 ms
107,520 KB |
testcase_46 | AC | 50 ms
66,688 KB |
testcase_47 | AC | 41 ms
53,760 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")