結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 400 ms
99,128 KB
testcase_01 AC 323 ms
96,156 KB
testcase_02 AC 469 ms
101,616 KB
testcase_03 AC 318 ms
97,844 KB
testcase_04 AC 458 ms
108,692 KB
testcase_05 AC 513 ms
107,068 KB
testcase_06 AC 484 ms
95,352 KB
testcase_07 AC 421 ms
99,508 KB
testcase_08 AC 402 ms
106,852 KB
testcase_09 AC 493 ms
106,104 KB
testcase_10 AC 556 ms
106,620 KB
testcase_11 AC 481 ms
105,016 KB
testcase_12 AC 391 ms
100,924 KB
testcase_13 AC 412 ms
97,188 KB
testcase_14 AC 405 ms
99,884 KB
testcase_15 AC 509 ms
103,396 KB
testcase_16 AC 503 ms
101,248 KB
testcase_17 AC 452 ms
99,004 KB
testcase_18 AC 506 ms
108,128 KB
testcase_19 AC 629 ms
108,936 KB
testcase_20 AC 42 ms
51,968 KB
testcase_21 AC 41 ms
52,224 KB
testcase_22 AC 42 ms
52,352 KB
testcase_23 AC 42 ms
52,224 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