結果

問題 No.1865 Make Cycle
ユーザー first_vilfirst_vil
提出日時 2022-03-04 22:34:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 594 ms / 3,000 ms
コード長 1,578 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,312 KB
最終ジャッジ日時 2024-05-03 12:25:54
合計ジャッジ時間 11,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
99,256 KB
testcase_01 AC 302 ms
96,288 KB
testcase_02 AC 425 ms
101,868 KB
testcase_03 AC 301 ms
97,720 KB
testcase_04 AC 445 ms
108,956 KB
testcase_05 AC 484 ms
107,080 KB
testcase_06 AC 413 ms
94,980 KB
testcase_07 AC 391 ms
99,384 KB
testcase_08 AC 358 ms
107,228 KB
testcase_09 AC 454 ms
106,484 KB
testcase_10 AC 503 ms
106,756 KB
testcase_11 AC 468 ms
105,012 KB
testcase_12 AC 363 ms
101,436 KB
testcase_13 AC 375 ms
96,936 KB
testcase_14 AC 383 ms
100,044 KB
testcase_15 AC 503 ms
103,524 KB
testcase_16 AC 491 ms
101,376 KB
testcase_17 AC 410 ms
98,620 KB
testcase_18 AC 462 ms
108,384 KB
testcase_19 AC 594 ms
109,312 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 37 ms
52,736 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n, q = mi()
g = [list() for i in range(n)]
for i in range(q):
    a, b = mi1()
    g[a].append((b, i))

ok = -1
ng = q
while ng - ok > 1:
    mid = ok + ng >> 1
    flag = False

    # check
    f = [-1] * n
    idx = [0] * n
    st = []
    for i in range(n):
        if f[i] != -1:
            continue
        st.append(i)
        while st:
            cur = st.pop()
            if idx[cur] == 0:
                f[cur] = i
            while idx[cur] < len(g[cur]) and g[cur][idx[cur]][1] > mid:
                idx[cur] += 1
            if idx[cur] == len(g[cur]):
                f[cur] = -2
            else:
                to = g[cur][idx[cur]][0]
                if f[to] == i:
                    flag = True
                    st = []
                    break
                elif f[to] == -1:
                    st.append(cur)
                    st.append(to)
                    idx[cur] += 1
                elif f[to] == -2:
                    st.append(cur)
                    idx[cur] += 1
        if flag:
            break
    #

    if flag:
        ng = mid
    else:
        ok = mid
if ng == q:
    print(-1)
else:
    print(ng + 1)
0