結果

問題 No.1865 Make Cycle
ユーザー NaHCO314NaHCO314
提出日時 2022-02-25 19:18:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,367 ms / 3,000 ms
コード長 767 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 40,552 KB
最終ジャッジ日時 2024-07-16 09:01:21
合計ジャッジ時間 33,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,604 ms
32,860 KB
testcase_01 AC 998 ms
28,244 KB
testcase_02 AC 1,695 ms
34,864 KB
testcase_03 AC 868 ms
31,068 KB
testcase_04 AC 1,502 ms
35,624 KB
testcase_05 AC 1,714 ms
33,364 KB
testcase_06 AC 1,363 ms
31,876 KB
testcase_07 AC 1,308 ms
31,788 KB
testcase_08 AC 1,925 ms
36,920 KB
testcase_09 AC 1,577 ms
33,288 KB
testcase_10 AC 1,643 ms
36,444 KB
testcase_11 AC 1,564 ms
34,424 KB
testcase_12 AC 1,283 ms
31,840 KB
testcase_13 AC 1,424 ms
32,808 KB
testcase_14 AC 1,065 ms
28,568 KB
testcase_15 AC 1,706 ms
35,240 KB
testcase_16 AC 1,872 ms
35,840 KB
testcase_17 AC 1,260 ms
29,608 KB
testcase_18 AC 1,781 ms
34,608 KB
testcase_19 AC 2,367 ms
40,552 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit


setrecursionlimit(10 ** 6)


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


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):
            has_cycle = True

    if has_cycle:
        right = mid
    else:
        left = mid

ans = right
print(ans if ans != q + 1 else -1)
0