結果

問題 No.1865 Make Cycle
ユーザー NaHCO314NaHCO314
提出日時 2022-02-25 18:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 866 ms / 3,000 ms
コード長 834 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 214,680 KB
最終ジャッジ日時 2024-07-16 09:01:39
合計ジャッジ時間 14,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
166,848 KB
testcase_01 AC 415 ms
141,040 KB
testcase_02 AC 632 ms
181,664 KB
testcase_03 AC 362 ms
130,028 KB
testcase_04 AC 544 ms
170,740 KB
testcase_05 AC 595 ms
186,212 KB
testcase_06 AC 608 ms
174,504 KB
testcase_07 AC 561 ms
168,448 KB
testcase_08 AC 696 ms
190,248 KB
testcase_09 AC 608 ms
184,148 KB
testcase_10 AC 667 ms
187,788 KB
testcase_11 AC 636 ms
183,024 KB
testcase_12 AC 538 ms
164,736 KB
testcase_13 AC 568 ms
167,240 KB
testcase_14 AC 462 ms
152,896 KB
testcase_15 AC 684 ms
189,908 KB
testcase_16 AC 725 ms
193,768 KB
testcase_17 AC 520 ms
167,700 KB
testcase_18 AC 601 ms
189,624 KB
testcase_19 AC 866 ms
214,680 KB
testcase_20 AC 38 ms
53,024 KB
testcase_21 AC 38 ms
53,052 KB
testcase_22 AC 38 ms
52,220 KB
testcase_23 AC 37 ms
53,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
from pypyjit import set_param


setrecursionlimit(10 ** 6)
set_param("max_unroll_recursion=-1")


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