結果

問題 No.1865 Make Cycle
ユーザー chineristACchineristAC
提出日時 2022-03-04 23:02:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 3,000 ms
コード長 927 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 160,788 KB
最終ジャッジ日時 2024-07-18 21:37:00
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
120,428 KB
testcase_01 AC 244 ms
106,916 KB
testcase_02 AC 376 ms
124,944 KB
testcase_03 AC 188 ms
110,508 KB
testcase_04 AC 283 ms
127,976 KB
testcase_05 AC 382 ms
137,212 KB
testcase_06 AC 332 ms
124,540 KB
testcase_07 AC 309 ms
117,316 KB
testcase_08 AC 414 ms
134,592 KB
testcase_09 AC 353 ms
137,412 KB
testcase_10 AC 367 ms
130,220 KB
testcase_11 AC 365 ms
125,024 KB
testcase_12 AC 315 ms
110,328 KB
testcase_13 AC 349 ms
120,200 KB
testcase_14 AC 268 ms
115,700 KB
testcase_15 AC 392 ms
130,292 KB
testcase_16 AC 403 ms
135,476 KB
testcase_17 AC 328 ms
118,564 KB
testcase_18 AC 378 ms
138,008 KB
testcase_19 AC 526 ms
160,788 KB
testcase_20 AC 44 ms
55,808 KB
testcase_21 AC 44 ms
55,552 KB
testcase_22 AC 46 ms
55,680 KB
testcase_23 AC 44 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
E = []
for _ in range(M):
    u,v = mi()
    E.append((u-1,v-1))

def cond(k):
    edge = [[] for v in range(N)]
    deg = [0] * N
    for i in range(k):
        u,v = E[i]
        edge[u].append(v)
        deg[v] += 1
    
    deq = deque([v for v in range(N) if deg[v]==0])
    while deq:
        v = deq.popleft()
        for nv in edge[v]:
            deg[nv] -= 1
            if deg[nv]==0:
                deq.append(nv)
    
    return any(deg[v] for v in range(N))

ok = M+1
ng = 0
while ok-ng>1:
    mid = (ok+ng)//2
    if cond(mid):
        ok = mid
    else:
        ng = mid

if ok==M+1:
    print(-1)
else:
    print(ok)

0