結果

問題 No.1865 Make Cycle
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-08 13:48:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 697 ms / 3,000 ms
コード長 693 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 177,128 KB
最終ジャッジ日時 2024-07-23 13:25:37
合計ジャッジ時間 11,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
126,280 KB
testcase_01 AC 274 ms
110,332 KB
testcase_02 AC 451 ms
140,388 KB
testcase_03 AC 229 ms
119,792 KB
testcase_04 AC 340 ms
138,388 KB
testcase_05 AC 430 ms
146,588 KB
testcase_06 AC 402 ms
134,396 KB
testcase_07 AC 374 ms
130,172 KB
testcase_08 AC 495 ms
148,104 KB
testcase_09 AC 413 ms
143,428 KB
testcase_10 AC 436 ms
136,520 KB
testcase_11 AC 435 ms
144,580 KB
testcase_12 AC 368 ms
130,776 KB
testcase_13 AC 419 ms
126,056 KB
testcase_14 AC 314 ms
120,092 KB
testcase_15 AC 490 ms
142,652 KB
testcase_16 AC 540 ms
150,444 KB
testcase_17 AC 409 ms
127,436 KB
testcase_18 AC 457 ms
149,456 KB
testcase_19 AC 697 ms
177,128 KB
testcase_20 AC 41 ms
54,332 KB
testcase_21 AC 42 ms
55,184 KB
testcase_22 AC 42 ms
55,140 KB
testcase_23 AC 42 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,q=map(int,input().split())
ab=[]
for _ in range(q):
    a,b=map(int,input().split())
    a-=1;b-=1
    ab.append((a,b))
def check(x):
    deg=[0]*n
    g=[[] for _ in range(n)]
    q=deque()
    for a,b in ab[:x]:
        deg[b]+=1
        g[a].append(b)
    for i in range(n):
        if deg[i]==0:
            q.append(i)
    ans=[]
    while q:
        now=q.popleft()
        ans.append(now)
        for to in g[now]:
            deg[to]-=1
            if deg[to]==0:
                q.append(to)
    return len(ans)!=n
r=q+1;l=0
while r-l>1:
    mid=(r+l)//2
    if check(mid):
        r=mid
    else:
        l=mid
if r>q:
    print(-1)
else:
    print(r)
0