結果

問題 No.1865 Make Cycle
ユーザー puznekopuzneko
提出日時 2022-04-07 23:08:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 771 ms / 3,000 ms
コード長 1,229 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 167,940 KB
最終ジャッジ日時 2024-11-28 02:24:32
合計ジャッジ時間 12,737 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 468 ms
113,116 KB
testcase_01 AC 324 ms
102,992 KB
testcase_02 AC 512 ms
122,908 KB
testcase_03 AC 255 ms
105,984 KB
testcase_04 AC 468 ms
133,408 KB
testcase_05 AC 646 ms
153,304 KB
testcase_06 AC 543 ms
128,852 KB
testcase_07 AC 458 ms
119,028 KB
testcase_08 AC 466 ms
126,456 KB
testcase_09 AC 600 ms
145,904 KB
testcase_10 AC 621 ms
153,712 KB
testcase_11 AC 574 ms
138,456 KB
testcase_12 AC 404 ms
119,900 KB
testcase_13 AC 431 ms
115,724 KB
testcase_14 AC 417 ms
117,628 KB
testcase_15 AC 606 ms
139,284 KB
testcase_16 AC 612 ms
144,860 KB
testcase_17 AC 519 ms
128,000 KB
testcase_18 AC 653 ms
160,608 KB
testcase_19 AC 771 ms
167,940 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 41 ms
52,352 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 41 ms
51,968 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