結果

問題 No.1865 Make Cycle
ユーザー rlangevinrlangevin
提出日時 2023-03-31 08:59:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,971 ms / 3,000 ms
コード長 1,066 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 274,868 KB
最終ジャッジ日時 2024-11-18 15:49:44
合計ジャッジ時間 25,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,188 ms
234,604 KB
testcase_01 AC 907 ms
184,392 KB
testcase_02 AC 1,431 ms
262,388 KB
testcase_03 AC 797 ms
179,340 KB
testcase_04 AC 1,342 ms
247,264 KB
testcase_05 AC 199 ms
93,724 KB
testcase_06 AC 1,357 ms
254,324 KB
testcase_07 AC 1,261 ms
246,480 KB
testcase_08 AC 1,630 ms
269,000 KB
testcase_09 AC 191 ms
93,100 KB
testcase_10 AC 1,434 ms
264,916 KB
testcase_11 AC 1,432 ms
265,804 KB
testcase_12 AC 1,228 ms
239,096 KB
testcase_13 AC 1,178 ms
233,648 KB
testcase_14 AC 1,075 ms
206,132 KB
testcase_15 AC 1,492 ms
269,716 KB
testcase_16 AC 1,679 ms
268,888 KB
testcase_17 AC 182 ms
93,060 KB
testcase_18 AC 203 ms
94,484 KB
testcase_19 AC 1,971 ms
274,868 KB
testcase_20 AC 37 ms
52,948 KB
testcase_21 AC 35 ms
53,852 KB
testcase_22 AC 37 ms
53,944 KB
testcase_23 AC 36 ms
53,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

from heapq import *
def topsort(G):
    Q = []
    count = [0] * len(G)
 
    for u in range(len(G)):
        for v in G[u]:
            count[v] += 1
 
    for u in range(len(G)):
        if count[u] == 0:
            heappush(Q, u)
 
    anslst = []
    while Q:
        u = heappop(Q)
        anslst.append(u)
        temp = []
        for v in G[u]:
            count[v] -= 1
            if count[v] == 0:
                heappush(Q, v)
 
    anslst.reverse()
    return anslst


def check(m):
    G = [[] for i in range(N)]
    S = set()
    for i in range(m):
        v = A[i] * (N + 5) + B[i]
        if v not in S:
            G[A[i] - 1].append(B[i] - 1)
            S.add(v)

    return len(topsort(G)) == N


N, Q = map(int, readline().split())
A, B = [None] * Q, [None] * Q
for i in range(Q):
    A[i], B[i] = map(int, readline().split())

if check(Q):
    print(-1)
    exit()

yes = 0
no = Q
while no - yes != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(no)
0