結果

問題 No.1865 Make Cycle
ユーザー MtSakaMtSaka
提出日時 2022-02-28 01:01:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 847 ms / 3,000 ms
コード長 955 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 215,424 KB
最終ジャッジ日時 2024-07-18 18:35:25
合計ジャッジ時間 13,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
142,900 KB
testcase_01 AC 396 ms
127,872 KB
testcase_02 AC 665 ms
180,616 KB
testcase_03 AC 213 ms
105,716 KB
testcase_04 AC 400 ms
157,764 KB
testcase_05 AC 609 ms
186,880 KB
testcase_06 AC 711 ms
165,120 KB
testcase_07 AC 539 ms
162,176 KB
testcase_08 AC 643 ms
171,008 KB
testcase_09 AC 554 ms
184,448 KB
testcase_10 AC 651 ms
181,116 KB
testcase_11 AC 640 ms
182,976 KB
testcase_12 AC 470 ms
153,028 KB
testcase_13 AC 514 ms
139,392 KB
testcase_14 AC 456 ms
149,692 KB
testcase_15 AC 763 ms
179,840 KB
testcase_16 AC 725 ms
163,456 KB
testcase_17 AC 566 ms
168,320 KB
testcase_18 AC 550 ms
189,832 KB
testcase_19 AC 847 ms
215,424 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 34 ms
52,352 KB
testcase_23 AC 35 ms
51,840 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 right - left > 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
                break
    
        if has_cycle:
            right = mid
        else:
            left = mid
    
    ans = right
    if ans==q+1:
        ans=-1
    print(ans)
0