結果

問題 No.1865 Make Cycle
ユーザー mkawa2mkawa2
提出日時 2022-03-04 23:21:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 1,458 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,484 KB
最終ジャッジ日時 2024-07-18 21:56:40
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
89,872 KB
testcase_01 AC 133 ms
85,400 KB
testcase_02 AC 199 ms
90,584 KB
testcase_03 AC 161 ms
88,360 KB
testcase_04 AC 161 ms
91,296 KB
testcase_05 AC 138 ms
89,632 KB
testcase_06 AC 151 ms
88,936 KB
testcase_07 AC 172 ms
89,672 KB
testcase_08 AC 195 ms
91,964 KB
testcase_09 AC 136 ms
89,304 KB
testcase_10 AC 175 ms
91,732 KB
testcase_11 AC 166 ms
90,300 KB
testcase_12 AC 152 ms
88,364 KB
testcase_13 AC 203 ms
90,240 KB
testcase_14 AC 138 ms
86,744 KB
testcase_15 AC 179 ms
90,608 KB
testcase_16 AC 176 ms
91,988 KB
testcase_17 AC 140 ms
87,732 KB
testcase_18 AC 147 ms
90,536 KB
testcase_19 AC 204 ms
95,484 KB
testcase_20 AC 34 ms
52,920 KB
testcase_21 AC 36 ms
53,152 KB
testcase_22 AC 37 ms
53,436 KB
testcase_23 AC 38 ms
53,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

def topo(st):
    global cnt
    while st:
        u = st.pop()
        for v, i in to[u]:
            if fin[i]: continue
            deg[v] -= 1
            fin[i] = 1
            cnt += 1
            if deg[v] == 0:
                st.append(v)

n, q = LI()

to = [[] for _ in range(n)]
ee = []
deg = [0]*n

for i in range(q):
    u, v = LI1()
    to[u].append((v, i))
    deg[v] += 1
    ee.append((u, v))

cnt = 0
st = [u for u in range(n) if deg[u] == 0]
fin = [0]*q
topo(st)

if cnt == q:
    print(-1)
    exit()

for i in range(q)[::-1]:
    if fin[i]: continue
    fin[i] = 1
    u, v = ee[i]
    deg[v] -= 1
    cnt += 1
    if deg[v] == 0: topo([v])
    if cnt == q:
        print(i+1)
        break
    # print(cnt, fin)
0