結果

問題 No.1660 Matrix Exponentiation
ユーザー vwxyzvwxyz
提出日時 2024-08-15 10:34:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-08-15 10:34:55
合計ジャッジ時間 7,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 110 ms
23,168 KB
testcase_10 AC 108 ms
23,296 KB
testcase_11 AC 132 ms
23,168 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 33 ms
10,880 KB
testcase_19 AC 470 ms
21,760 KB
testcase_20 AC 326 ms
20,992 KB
testcase_21 AC 499 ms
17,152 KB
testcase_22 AC 84 ms
18,688 KB
testcase_23 AC 216 ms
18,432 KB
testcase_24 AC 637 ms
28,672 KB
testcase_25 AC 520 ms
24,192 KB
testcase_26 AC 669 ms
28,672 KB
testcase_27 AC 416 ms
25,728 KB
testcase_28 AC 601 ms
25,728 KB
testcase_29 AC 470 ms
25,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
graph=[[] for x in range(N)]
degree=[0]*N
for k in range(K):
    r,c=map(int,input().split())
    r-=1;c-=1
    graph[r].append(c)
    degree[c]+=1
queue=[]
inf=1<<30
dp=[-inf]*N
for x in range(N):
    if degree[x]==0:
        queue.append(x)
        dp[x]=0
while queue:
    x=queue.pop()
    for y in graph[x]:
        dp[y]=max(dp[y],dp[x]+1)
        degree[y]-=1
        if degree[y]==0:
            queue.append(y)
if sum(degree):
    ans=-1
else:
    ans=max(dp)+1
print(ans)
0