結果

問題 No.1865 Make Cycle
ユーザー puznekopuzneko
提出日時 2022-04-07 23:05:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,175 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 167,696 KB
最終ジャッジ日時 2024-05-06 00:44:25
合計ジャッジ時間 9,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
113,240 KB
testcase_01 AC 250 ms
102,336 KB
testcase_02 AC 379 ms
123,172 KB
testcase_03 AC 223 ms
105,556 KB
testcase_04 AC 362 ms
133,416 KB
testcase_05 WA -
testcase_06 AC 403 ms
128,740 KB
testcase_07 AC 331 ms
119,264 KB
testcase_08 AC 348 ms
126,408 KB
testcase_09 WA -
testcase_10 AC 465 ms
153,808 KB
testcase_11 AC 426 ms
138,456 KB
testcase_12 AC 310 ms
119,976 KB
testcase_13 AC 329 ms
115,784 KB
testcase_14 AC 311 ms
117,412 KB
testcase_15 AC 432 ms
139,100 KB
testcase_16 AC 455 ms
145,228 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 531 ms
167,696 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 WA -
testcase_22 AC 37 ms
52,352 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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

print("{}".format(right))
0