結果

問題 No.1865 Make Cycle
ユーザー MtSakaMtSaka
提出日時 2022-02-26 08:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,418 ms / 3,000 ms
コード長 942 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 215,420 KB
最終ジャッジ日時 2024-07-16 09:02:58
合計ジャッジ時間 20,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
165,136 KB
testcase_01 AC 654 ms
142,912 KB
testcase_02 AC 1,144 ms
181,676 KB
testcase_03 AC 312 ms
102,860 KB
testcase_04 AC 608 ms
165,468 KB
testcase_05 AC 795 ms
186,752 KB
testcase_06 AC 1,029 ms
177,544 KB
testcase_07 AC 870 ms
171,320 KB
testcase_08 AC 1,232 ms
190,152 KB
testcase_09 AC 765 ms
184,236 KB
testcase_10 AC 941 ms
187,712 KB
testcase_11 AC 946 ms
183,296 KB
testcase_12 AC 812 ms
164,192 KB
testcase_13 AC 819 ms
164,896 KB
testcase_14 AC 677 ms
153,932 KB
testcase_15 AC 1,240 ms
192,244 KB
testcase_16 AC 1,351 ms
194,828 KB
testcase_17 AC 797 ms
167,996 KB
testcase_18 AC 785 ms
190,232 KB
testcase_19 AC 1,418 ms
215,420 KB
testcase_20 AC 39 ms
52,624 KB
testcase_21 AC 39 ms
53,552 KB
testcase_22 AC 40 ms
53,372 KB
testcase_23 AC 39 ms
53,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit


setrecursionlimit(10 ** 6)


def DFS(v, g, seen):
    seen[v] = 1
    for i in g[v]:
        if seen[i] == 1 or (seen[i] == 0 and DFS(i, g, seen)):
            return True
    seen[v] = 2
    return False


if __name__ == '__main__':
    n, q = map(int, input().split())
    edges = []
    for i in range(q):
        a, b = map(int, input().split())
        edges.append((a - 1, b - 1))

        left, right = -1, q + 1
    
    while abs(left - right) > 1:
        mid = (right + left) // 2
    
        g = [[] for _ in range(n)]
        for a, b in edges[:mid]:
            g[a].append(b)
        seen = [0] * n
        has_cycle = False
        for i in range(n):
            if seen[i] == 0 and DFS(i, g, seen):
                has_cycle = True
    
        if has_cycle:
            right = mid
        else:
            left = mid
    
    ans = right
    if ans==q+1:
        ans=-1
    print(ans)
0