結果

問題 No.1865 Make Cycle
ユーザー NaHCO314NaHCO314
提出日時 2022-02-25 19:22:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 775 ms / 3,000 ms
コード長 1,049 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 213,968 KB
最終ジャッジ日時 2024-07-16 09:00:04
合計ジャッジ時間 13,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
167,088 KB
testcase_01 AC 365 ms
140,848 KB
testcase_02 AC 581 ms
180,056 KB
testcase_03 AC 303 ms
129,208 KB
testcase_04 AC 478 ms
169,540 KB
testcase_05 AC 570 ms
186,592 KB
testcase_06 AC 529 ms
174,720 KB
testcase_07 AC 488 ms
169,336 KB
testcase_08 AC 644 ms
188,664 KB
testcase_09 AC 548 ms
183,500 KB
testcase_10 AC 581 ms
187,288 KB
testcase_11 AC 547 ms
181,152 KB
testcase_12 AC 480 ms
165,184 KB
testcase_13 AC 520 ms
165,460 KB
testcase_14 AC 407 ms
152,040 KB
testcase_15 AC 672 ms
188,488 KB
testcase_16 AC 677 ms
193,616 KB
testcase_17 AC 514 ms
167,640 KB
testcase_18 AC 595 ms
189,684 KB
testcase_19 AC 775 ms
213,968 KB
testcase_20 AC 36 ms
52,544 KB
testcase_21 AC 35 ms
53,724 KB
testcase_22 AC 34 ms
52,684 KB
testcase_23 AC 35 ms
53,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
from pypyjit import set_param


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


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


def main(n, q, edges):
    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
    return ans if ans != q + 1 else -1


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))

    ans = main(n, q, edges)
    print(ans)
0