結果

問題 No.1865 Make Cycle
ユーザー H20H20
提出日時 2022-03-04 22:11:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 811 ms / 3,000 ms
コード長 767 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 179,764 KB
最終ジャッジ日時 2024-07-18 20:42:39
合計ジャッジ時間 10,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
def is_ok(m):
    L = [[] for _ in range(N+1)]
    ok = 0
    CNT = [0]*(N+1)
    for a,b in AB[:m]:
        L[a].append(b)
        CNT[b]+=1
    d = collections.deque()
    for i in range(1,N+1):
        if CNT[i]==0:
            d.append(i)
    while len(d):
        ok+=1
        i = d.pop()
        for l in L[i]:
            CNT[l]-=1
            if CNT[l]==0:
                d.append(l)
    return ok==N


def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok

N,Q = map(int, input().split())
AB = [list(map(int, input().split())) for _ in range(Q)]


if is_ok(Q):
    print(-1)
else:
    print(meguru_bisect(Q,0)+1)
0