結果

問題 No.1865 Make Cycle
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-03-04 21:55:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 573 ms / 3,000 ms
コード長 828 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 158,928 KB
最終ジャッジ日時 2024-07-18 20:15:51
合計ジャッジ時間 9,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 436 ms
125,740 KB
testcase_01 AC 266 ms
101,280 KB
testcase_02 AC 419 ms
123,816 KB
testcase_03 AC 222 ms
104,012 KB
testcase_04 AC 331 ms
124,720 KB
testcase_05 AC 419 ms
141,984 KB
testcase_06 AC 381 ms
118,196 KB
testcase_07 AC 352 ms
119,132 KB
testcase_08 AC 493 ms
141,060 KB
testcase_09 AC 383 ms
120,512 KB
testcase_10 AC 440 ms
139,812 KB
testcase_11 AC 434 ms
132,668 KB
testcase_12 AC 376 ms
124,460 KB
testcase_13 AC 358 ms
111,408 KB
testcase_14 AC 311 ms
109,068 KB
testcase_15 AC 449 ms
132,016 KB
testcase_16 AC 517 ms
142,912 KB
testcase_17 AC 322 ms
108,836 KB
testcase_18 AC 424 ms
146,104 KB
testcase_19 AC 573 ms
158,928 KB
testcase_20 AC 42 ms
53,504 KB
testcase_21 AC 43 ms
53,760 KB
testcase_22 AC 43 ms
54,016 KB
testcase_23 AC 42 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
1865:
二分探索でok

"""

import sys
from sys import stdin
from collections import deque

N,Q = map(int,stdin.readline().split())

AB = []
for i in range(Q):
    A,B = map(int,stdin.readline().split())
    A -= 1
    B -= 1
    AB.append( (A,B) )

L = 0
R = Q+1

while R-L != 1:

    M = (L+R)//2
    lis = [ [] for i in range(N) ]
    inlis = [0] * N

    for i in range(M):
        a,b = AB[i]
        lis[a].append(b)
        inlis[b] += 1

    q = deque([])

    for i in range(N):
        if inlis[i] == 0:
            q.append(i)

    end = 0
    while q:
        v = q.popleft()
        end += 1
        for nex in lis[v]:
            inlis[nex] -= 1
            if inlis[nex] == 0:
                q.append(nex)

    if end == N:
        L = M
    else:
        R = M

if R == Q+1:
    R = -1
print (R)
        
0