結果

問題 No.1865 Make Cycle
ユーザー titan23titan23
提出日時 2022-06-28 02:37:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,128 ms / 3,000 ms
コード長 1,059 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 278,648 KB
最終ジャッジ日時 2024-11-20 12:06:32
合計ジャッジ時間 16,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
184,764 KB
testcase_01 AC 441 ms
160,220 KB
testcase_02 AC 781 ms
215,692 KB
testcase_03 AC 296 ms
139,936 KB
testcase_04 AC 569 ms
201,060 KB
testcase_05 AC 705 ms
215,996 KB
testcase_06 AC 660 ms
190,988 KB
testcase_07 AC 624 ms
186,292 KB
testcase_08 AC 804 ms
231,584 KB
testcase_09 AC 698 ms
236,508 KB
testcase_10 AC 707 ms
213,252 KB
testcase_11 AC 728 ms
216,292 KB
testcase_12 AC 578 ms
183,948 KB
testcase_13 AC 668 ms
190,388 KB
testcase_14 AC 451 ms
152,340 KB
testcase_15 AC 895 ms
231,580 KB
testcase_16 AC 906 ms
247,548 KB
testcase_17 AC 615 ms
176,344 KB
testcase_18 AC 706 ms
221,048 KB
testcase_19 AC 1,128 ms
278,648 KB
testcase_20 AC 42 ms
54,272 KB
testcase_21 AC 42 ms
53,976 KB
testcase_22 AC 42 ms
54,448 KB
testcase_23 AC 43 ms
54,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
input = lambda: sys.stdin.readline().rstrip()

def topological_sort(G: list) -> list:
  "Return topological_sort. / O(|V|+|E|)"
  # 0-indexed
  n = len(G)
  in_cnt = [0] * n
  outs = [[] for _ in range(n)]
  for v in range(n):
    for x in G[v]:
      in_cnt[x] += 1
      outs[v].append(x)
  res = []
  todo = deque([i for i in range(n) if in_cnt[i] == 0])
  while todo:
    v = todo.popleft()
    res.append(v)
    for x in outs[v]:
      in_cnt[x] -= 1
      if in_cnt[x] == 0:
        todo.append(x)
  return res

#  -----------------------  #

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

def isok(mid):
  G = [[] for _ in range(n)]
  for i in range(mid):
    a = AB[i][0] - 1
    b = AB[i][1] - 1
    G[a].append(b)
  toposo = topological_sort(G)
  if len(toposo) != n:
    return True
  else:
    return False

ok, ng = q+1, -1
while ok - ng > 1:
  mid = (ok + ng) // 2
  if isok(mid):
    ok = mid
  else:
    ng = mid
if ok == q+1:
  print(-1)
else:
  print(ok)

0