結果

問題 No.1865 Make Cycle
ユーザー tamatotamato
提出日時 2022-03-04 21:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 3,000 ms
コード長 1,144 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 173,564 KB
最終ジャッジ日時 2024-07-18 19:59:49
合計ジャッジ時間 9,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 418 ms
128,436 KB
testcase_01 AC 274 ms
110,424 KB
testcase_02 AC 416 ms
132,216 KB
testcase_03 AC 200 ms
111,332 KB
testcase_04 AC 324 ms
138,108 KB
testcase_05 AC 396 ms
137,784 KB
testcase_06 AC 399 ms
135,720 KB
testcase_07 AC 350 ms
124,152 KB
testcase_08 AC 480 ms
149,280 KB
testcase_09 AC 384 ms
134,756 KB
testcase_10 AC 431 ms
143,480 KB
testcase_11 AC 409 ms
132,956 KB
testcase_12 AC 343 ms
126,384 KB
testcase_13 AC 377 ms
127,492 KB
testcase_14 AC 285 ms
109,128 KB
testcase_15 AC 474 ms
138,204 KB
testcase_16 AC 471 ms
147,820 KB
testcase_17 AC 346 ms
122,016 KB
testcase_18 AC 403 ms
139,796 KB
testcase_19 AC 598 ms
173,564 KB
testcase_20 AC 45 ms
53,760 KB
testcase_21 AC 43 ms
54,144 KB
testcase_22 AC 43 ms
53,888 KB
testcase_23 AC 42 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    N, Q = map(int, input().split())
    AB = [(0, 0)]
    for _ in range(Q):
        AB.append(tuple(map(int, input().split())))

    ok = Q + 1
    ng = 0
    mid = (ok + ng) // 2
    while ok - ng > 1:
        adj = [[] for _ in range(N + 1)]
        in_num = [0] * (N + 1)
        for a, b in AB[1:mid+1]:
            adj[a].append(b)
            in_num[b] += 1
        que = deque()
        seen = [0] * (N + 1)
        for v in range(1, N + 1):
            if in_num[v] == 0:
                seen[v] = 1
                que.append(v)
        while que:
            v = que.popleft()
            for u in adj[v]:
                in_num[u] -= 1
                if in_num[u] == 0:
                    if not seen[u]:
                        seen[u] = 1
                        que.append(u)
        if sum(seen) == N:
            ng = mid
        else:
            ok = mid
        mid = (ok + ng) // 2
    if ok == Q + 1:
        print(-1)
    else:
        print(ok)


if __name__ == '__main__':
    main()
0