結果

問題 No.1865 Make Cycle
ユーザー ああいいああいい
提出日時 2022-03-04 22:29:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 3,000 ms
コード長 1,031 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,240 KB
最終ジャッジ日時 2024-07-18 21:00:17
合計ジャッジ時間 5,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
108,892 KB
testcase_01 AC 197 ms
97,792 KB
testcase_02 AC 243 ms
109,740 KB
testcase_03 AC 218 ms
104,016 KB
testcase_04 AC 210 ms
105,096 KB
testcase_05 AC 180 ms
99,840 KB
testcase_06 AC 172 ms
101,508 KB
testcase_07 AC 224 ms
103,728 KB
testcase_08 AC 260 ms
111,872 KB
testcase_09 AC 180 ms
99,968 KB
testcase_10 AC 230 ms
110,164 KB
testcase_11 AC 188 ms
104,740 KB
testcase_12 AC 190 ms
102,568 KB
testcase_13 AC 256 ms
109,388 KB
testcase_14 AC 168 ms
95,040 KB
testcase_15 AC 242 ms
106,896 KB
testcase_16 AC 227 ms
107,224 KB
testcase_17 AC 178 ms
99,676 KB
testcase_18 AC 182 ms
100,208 KB
testcase_19 AC 248 ms
115,240 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
G = [[] for _ in range(N+1)]
Gnum = [0] * (N + 1)
edge = []
for i in range(Q):
    a,b = map(int,input().split())
    G[a].append((b,i))
    Gnum[b] += 1
    edge.append((a,b,i))

count = 0
top = []
stack = []
s = set()
for i in range(1,N+1):
    if Gnum[i] == 0:
        stack.append(i)
        count += 1
while stack:
    now = stack.pop()
    for v,i in G[now]:
        s.add(i)
        Gnum[v] -= 1
        if Gnum[v] == 0:
            count += 1
            stack.append(v)
import sys
if count == N:
    print(-1)
    exit()
for a,b,i in reversed(edge):
    if i in s:continue
    s.add(i)
    Gnum[b] -= 1
    if Gnum[b] == 0:
        count += 1
        stack.append(b)
        while stack:
            now = stack.pop()
            for v,j in G[now]:
                if j in s:continue
                s.add(j)
                Gnum[v] -= 1
                if Gnum[v] == 0:
                    count += 1
                    stack.append(v)
    if count == N:
        print(i+1)
        exit()
0