結果

問題 No.1660 Matrix Exponentiation
ユーザー とりゐとりゐ
提出日時 2022-03-30 11:58:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 678 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 247,948 KB
最終ジャッジ日時 2024-11-14 10:59:22
合計ジャッジ時間 6,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,128 KB
testcase_01 AC 37 ms
52,860 KB
testcase_02 AC 38 ms
53,384 KB
testcase_03 AC 38 ms
54,220 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 38 ms
53,132 KB
testcase_06 AC 37 ms
53,380 KB
testcase_07 AC 37 ms
53,272 KB
testcase_08 AC 37 ms
52,964 KB
testcase_09 AC 100 ms
101,128 KB
testcase_10 AC 94 ms
100,904 KB
testcase_11 AC 43 ms
64,440 KB
testcase_12 AC 36 ms
52,524 KB
testcase_13 AC 37 ms
52,256 KB
testcase_14 AC 36 ms
53,164 KB
testcase_15 AC 46 ms
56,628 KB
testcase_16 AC 39 ms
54,060 KB
testcase_17 AC 39 ms
54,064 KB
testcase_18 AC 51 ms
59,156 KB
testcase_19 AC 369 ms
113,908 KB
testcase_20 AC 311 ms
110,892 KB
testcase_21 AC 284 ms
94,928 KB
testcase_22 AC 99 ms
86,172 KB
testcase_23 AC 240 ms
99,424 KB
testcase_24 AC 672 ms
231,532 KB
testcase_25 AC 291 ms
120,664 KB
testcase_26 AC 653 ms
231,180 KB
testcase_27 AC 45 ms
65,928 KB
testcase_28 AC 399 ms
102,332 KB
testcase_29 AC 678 ms
247,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

def scc(N, G, RG):
    order = []
    used = [0]*N
    group = [None]*N
    def dfs(s):
        used[s] = 1
        for t in G[s]:
            if not used[t]:
                dfs(t)
        order.append(s)
    def rdfs(s, col):
        group[s] = col
        used[s] = 1
        for t in RG[s]:
            if not used[t]:
                rdfs(t, col)
    for i in range(N):
        if not used[i]:
            dfs(i)
    used = [0]*N
    label = 0
    for s in reversed(order):
        if not used[s]:
            rdfs(s, label)
            label += 1
    return label, group

def construct(N, G, label, group):
    G0 = [set() for i in range(label)]
    GP = [[] for i in range(label)]
    for v in range(N):
        lbs = group[v]
        for w in G[v]:
            lbt = group[w]
            if lbs == lbt:
                continue
            G0[lbs].add(lbt)
        GP[lbs].append(v)
    return G0, GP

n,m=map(int,input().split())
edge=[[] for i in range(n)]
redge=[[] for i in range(n)]
for _ in range(m):
  a,b=map(lambda x:int(x)-1,input().split())
  if a==b:
    print(-1)
    exit()
  edge[a].append(b)
  redge[b].append(a)

label,group=scc(n,edge,redge)
if label!=n:
  print(-1)
  exit()

dp=[1]*n
G0,GP=construct(n,edge,n,group)
for i in range(n):
  for j in G0[i]:
    dp[j]=max(dp[j],dp[i]+1)
print(max(dp))
0