結果

問題 No.1660 Matrix Exponentiation
ユーザー googol_S0googol_S0
提出日時 2021-08-27 23:12:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 883 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 288,016 KB
最終ジャッジ日時 2024-11-21 05:05:45
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,452 KB
testcase_01 AC 35 ms
52,752 KB
testcase_02 AC 35 ms
53,076 KB
testcase_03 AC 36 ms
53,004 KB
testcase_04 AC 35 ms
53,184 KB
testcase_05 AC 35 ms
53,484 KB
testcase_06 AC 35 ms
53,372 KB
testcase_07 AC 35 ms
53,268 KB
testcase_08 AC 36 ms
52,808 KB
testcase_09 AC 96 ms
97,884 KB
testcase_10 AC 92 ms
97,864 KB
testcase_11 AC 41 ms
61,780 KB
testcase_12 AC 38 ms
52,396 KB
testcase_13 AC 36 ms
53,020 KB
testcase_14 AC 36 ms
54,172 KB
testcase_15 AC 49 ms
62,472 KB
testcase_16 AC 39 ms
55,432 KB
testcase_17 AC 38 ms
55,504 KB
testcase_18 AC 55 ms
65,672 KB
testcase_19 AC 396 ms
104,104 KB
testcase_20 AC 313 ms
101,952 KB
testcase_21 AC 294 ms
89,192 KB
testcase_22 AC 118 ms
87,824 KB
testcase_23 AC 287 ms
95,308 KB
testcase_24 AC 883 ms
270,008 KB
testcase_25 AC 232 ms
110,872 KB
testcase_26 AC 871 ms
268,088 KB
testcase_27 AC 42 ms
61,540 KB
testcase_28 AC 417 ms
113,464 KB
testcase_29 AC 877 ms
288,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)
N,M=map(int,input().split())
G=[[] for i in range(N)]
for i in range(M):
  a,b=map(int,input().split())
  a-=1
  b-=1
  if a==b:
    print(-1)
    exit()
  G[a].append(b)
def SCC(G):
  D=[]
  C=[len(G)-1]
  U=[1]*len(G)
  def DFS(x):
    if U[x]:
      U[x]=0
      for i in range(len(G[x])):
        DFS(G[x][i])
      D.append(x)
  
  for i in range(len(G)):
    if U[i]:
      DFS(i)
  GR=[[] for i in range(len(G))]
  for i in range(len(G)):
    for j in range(len(G[i])):
      GR[G[i][j]].append(i)
  R=[]
  U=[1]*len(G)
  def DFSR(x):
    if U[x]:
      R[-1].append(x)
      U[x]=0
      for i in range(len(GR[x])):
        DFSR(GR[x][i])
  
  for i in range(len(G)-1,-1,-1):
    if U[D[i]]:
      R.append([])
      DFSR(D[i])
  return R

X=SCC(G)
if max([len(X[i]) for i in range(len(X))])>1:
  print(-1)
  exit()

DP=[-1]*N
def f(x):
  if DP[x]!=-1:
    return DP[x]
  DP[x]=0
  for i in range(len(G[x])):
    DP[x]=max(DP[x],f(G[x][i])+1)
  return DP[x]
 
print(max([f(i)for i in range(N)])+1)
0