結果

問題 No.1865 Make Cycle
ユーザー roarisroaris
提出日時 2022-03-04 22:33:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,155 ms / 3,000 ms
コード長 1,019 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 117,120 KB
最終ジャッジ日時 2024-07-18 21:06:07
合計ジャッジ時間 18,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 800 ms
99,584 KB
testcase_01 AC 632 ms
96,512 KB
testcase_02 AC 685 ms
100,608 KB
testcase_03 AC 457 ms
100,096 KB
testcase_04 AC 704 ms
110,592 KB
testcase_05 AC 805 ms
108,928 KB
testcase_06 AC 936 ms
102,912 KB
testcase_07 AC 866 ms
103,168 KB
testcase_08 AC 827 ms
107,136 KB
testcase_09 AC 789 ms
109,056 KB
testcase_10 AC 1,046 ms
108,928 KB
testcase_11 AC 944 ms
109,696 KB
testcase_12 AC 735 ms
99,200 KB
testcase_13 AC 842 ms
98,944 KB
testcase_14 AC 698 ms
101,376 KB
testcase_15 AC 1,096 ms
107,648 KB
testcase_16 AC 1,051 ms
109,952 KB
testcase_17 AC 858 ms
104,192 KB
testcase_18 AC 748 ms
110,208 KB
testcase_19 AC 1,155 ms
117,120 KB
testcase_20 AC 46 ms
53,504 KB
testcase_21 AC 46 ms
53,504 KB
testcase_22 AC 47 ms
53,760 KB
testcase_23 AC 46 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**5+10)
from collections import *

def dfs(v, pv, t):
    global pos
    
    seen[v] = True
    hist.append(v)
    
    for i, nv in G[v]:
        if t<i:
            continue
        
        if finished[nv]:
            continue
        
        if seen[nv] and not finished[nv]:
            pos = nv
            return
        
        dfs(nv, v, t)
        
        if pos!=-1:
            return
    
    hist.pop()
    finished[v] = True

N, Q = map(int, input().split())
G = [[] for _ in range(N)]

for i in range(Q):
    A, B = map(int, input().split())
    G[A-1].append((i+1, B-1))

l, r = 0, Q

while l<=r:
    m = (l+r)//2
    seen = [False]*N
    finished = [False]*N
    pos = -1
    hist = []
    
    for v in range(N):
        if not seen[v]:
            dfs(v, -1, m)
            
            if len(hist)>0:
                r = m-1
                break
    else:
        l = m+1

ans = l

if ans==Q+1:
    print(-1)
else:
    print(ans)
0