結果

問題 No.1865 Make Cycle
ユーザー MtSakaMtSaka
提出日時 2022-02-26 08:05:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,733 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,556 KB
最終ジャッジ日時 2024-06-30 16:21:52
合計ジャッジ時間 38,928 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,626 ms
32,952 KB
testcase_01 AC 1,075 ms
28,268 KB
testcase_02 AC 1,891 ms
35,008 KB
testcase_03 AC 969 ms
30,948 KB
testcase_04 AC 1,637 ms
35,620 KB
testcase_05 AC 1,916 ms
33,368 KB
testcase_06 AC 1,732 ms
31,916 KB
testcase_07 AC 1,599 ms
31,904 KB
testcase_08 AC 2,186 ms
37,056 KB
testcase_09 AC 1,837 ms
33,372 KB
testcase_10 AC 1,977 ms
36,432 KB
testcase_11 AC 1,886 ms
34,304 KB
testcase_12 AC 1,544 ms
31,940 KB
testcase_13 AC 1,593 ms
32,852 KB
testcase_14 AC 1,288 ms
28,576 KB
testcase_15 AC 2,049 ms
35,112 KB
testcase_16 AC 2,225 ms
35,988 KB
testcase_17 AC 1,557 ms
29,620 KB
testcase_18 AC 1,946 ms
34,616 KB
testcase_19 AC 2,733 ms
40,556 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 29 ms
10,752 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