結果

問題 No.1660 Matrix Exponentiation
ユーザー ygd.ygd.
提出日時 2021-08-29 11:25:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 232,944 KB
最終ジャッジ日時 2024-05-01 21:45:44
合計ジャッジ時間 8,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
62,940 KB
testcase_01 AC 37 ms
54,016 KB
testcase_02 AC 37 ms
54,016 KB
testcase_03 AC 36 ms
53,760 KB
testcase_04 WA -
testcase_05 AC 36 ms
53,504 KB
testcase_06 AC 36 ms
53,504 KB
testcase_07 WA -
testcase_08 AC 41 ms
53,888 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 39 ms
53,680 KB
testcase_11 AC 39 ms
53,632 KB
testcase_12 AC 38 ms
53,888 KB
testcase_13 AC 39 ms
53,632 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
54,016 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 44 ms
62,720 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 72 ms
80,512 KB
testcase_26 WA -
testcase_27 AC 36 ms
53,504 KB
testcase_28 AC 117 ms
88,516 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import defaultdict 

def main():
    n,k = map(int,input().split())
    if k == 0:
        print(1);exit()
    #A = [[0]*n for _ in range(n)]
    dic = {}
    for _ in range(k):
        r,c = map(int,input().split())
        r -= 1; c -= 1
        if r == c: #対角成分に1があったら無理
            print(-1);exit()
        if r not in dic:
            dic[r] = [c]
        else:
            dic[r].append(c)
    #print(dic)
    for i in range(1,2*pow(10,5)+100):
        if not dic: print(i);exit()
        predic = {}
        dic,predic = predic,dic
        for r in predic:
            for nr in predic[r]:
                if nr not in predic: continue
                nc = predic[nr]
                if r in nc: print(-1);exit()
                dic[r] = nc
        #print(dic)

if __name__ == "__main__":
    main()
0