結果

問題 No.1865 Make Cycle
ユーザー puznekopuzneko
提出日時 2022-04-07 23:08:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 546 ms / 3,000 ms
コード長 1,229 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 167,432 KB
最終ジャッジ日時 2024-05-06 00:45:37
合計ジャッジ時間 9,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
113,680 KB
testcase_01 AC 262 ms
102,280 KB
testcase_02 AC 380 ms
122,696 KB
testcase_03 AC 230 ms
105,344 KB
testcase_04 AC 343 ms
133,096 KB
testcase_05 AC 437 ms
153,092 KB
testcase_06 AC 387 ms
128,528 KB
testcase_07 AC 325 ms
119,216 KB
testcase_08 AC 334 ms
126,180 KB
testcase_09 AC 410 ms
145,980 KB
testcase_10 AC 440 ms
153,652 KB
testcase_11 AC 403 ms
137,940 KB
testcase_12 AC 313 ms
119,708 KB
testcase_13 AC 315 ms
115,464 KB
testcase_14 AC 310 ms
117,416 KB
testcase_15 AC 448 ms
139,344 KB
testcase_16 AC 448 ms
144,908 KB
testcase_17 AC 378 ms
127,620 KB
testcase_18 AC 441 ms
160,136 KB
testcase_19 AC 546 ms
167,432 KB
testcase_20 AC 41 ms
52,096 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

n, q, *indata = map(int, stdin.read().split())
offset = 0
left = 0
right = q+1
while right - left >= 2:
    mid = (right + left) // 2
    g = [[] for i in range(n)]
    for i in range(mid):
        s, t = indata[i*2]-1,indata[i*2+1]-1
        g[s].append(t)
    check = [0 for j in range(n)]
    cyclecheck = False
    for j in range(n):
        if check[j] == 0:
            que = [(j,0)]
            while que:
                now, inout = que.pop()
                if inout == 0:
                    if check[now] == 0:
                        que.append((now,1))
                        check[now] = 1
                        for k in g[now]:
                            if check[k] == 1:
                                cyclecheck = True
                                break
                            elif check[k] == 0:
                                que.append((k,0))
                        if cyclecheck:
                            break
                else:
                    check[now] = 2
            if cyclecheck:
                break
    if cyclecheck:
        right = mid
    else:
        left = mid

if right == q+1:
    print("{}".format(-1))
else:
    print("{}".format(right))
0