結果

問題 No.1865 Make Cycle
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-08 16:59:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,123 ms / 3,000 ms
コード長 654 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,060 KB
最終ジャッジ日時 2024-07-23 16:58:47
合計ジャッジ時間 27,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,104 ms
29,788 KB
testcase_01 AC 757 ms
24,932 KB
testcase_02 AC 1,246 ms
30,828 KB
testcase_03 AC 738 ms
28,124 KB
testcase_04 AC 1,134 ms
30,824 KB
testcase_05 AC 1,217 ms
28,884 KB
testcase_06 AC 1,116 ms
27,288 KB
testcase_07 AC 1,038 ms
28,704 KB
testcase_08 AC 1,403 ms
32,520 KB
testcase_09 AC 1,172 ms
28,436 KB
testcase_10 AC 1,314 ms
32,084 KB
testcase_11 AC 1,249 ms
29,692 KB
testcase_12 AC 1,110 ms
28,512 KB
testcase_13 AC 1,085 ms
30,064 KB
testcase_14 AC 874 ms
25,476 KB
testcase_15 AC 1,303 ms
30,732 KB
testcase_16 AC 1,441 ms
31,164 KB
testcase_17 AC 1,014 ms
26,016 KB
testcase_18 AC 1,291 ms
29,436 KB
testcase_19 AC 2,123 ms
35,060 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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=[]
    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.pop()
        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