結果

問題 No.2464 To DAG
ユーザー fiblonariafiblonaria
提出日時 2023-09-21 19:08:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,791 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 310,004 KB
最終ジャッジ日時 2024-07-07 12:44:00
合計ジャッジ時間 47,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 1,791 ms
310,004 KB
testcase_03 AC 1,656 ms
221,252 KB
testcase_04 AC 1,616 ms
186,732 KB
testcase_05 AC 1,524 ms
169,240 KB
testcase_06 AC 1,509 ms
161,608 KB
testcase_07 AC 1,114 ms
168,740 KB
testcase_08 AC 1,358 ms
162,872 KB
testcase_09 AC 1,281 ms
141,272 KB
testcase_10 AC 1,284 ms
134,680 KB
testcase_11 AC 954 ms
124,412 KB
testcase_12 AC 804 ms
117,692 KB
testcase_13 AC 976 ms
116,492 KB
testcase_14 AC 998 ms
165,344 KB
testcase_15 AC 1,384 ms
219,488 KB
testcase_16 AC 824 ms
156,636 KB
testcase_17 AC 176 ms
89,984 KB
testcase_18 AC 490 ms
131,200 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 AC 893 ms
135,792 KB
testcase_23 AC 876 ms
133,576 KB
testcase_24 AC 845 ms
137,036 KB
testcase_25 AC 812 ms
136,564 KB
testcase_26 AC 346 ms
109,184 KB
testcase_27 AC 1,515 ms
228,292 KB
testcase_28 AC 1,509 ms
228,728 KB
testcase_29 AC 1,506 ms
214,196 KB
testcase_30 AC 1,214 ms
145,920 KB
testcase_31 AC 1,085 ms
138,072 KB
testcase_32 AC 1,014 ms
136,344 KB
testcase_33 AC 1,375 ms
228,448 KB
testcase_34 AC 764 ms
156,000 KB
testcase_35 AC 384 ms
83,152 KB
testcase_36 AC 379 ms
81,976 KB
testcase_37 AC 349 ms
77,976 KB
testcase_38 AC 355 ms
78,384 KB
testcase_39 AC 109 ms
118,400 KB
testcase_40 AC 114 ms
118,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def choice(s):
	for i in s:
		return i
def remove_edge(f, t, succ, pred, zero):
	succ[f][t] = succ[f][t] - 1
	if succ[f][t] == 0:
		del succ[f][t]
	pred[t][f] = pred[t][f] - 1
	if pred[t][f] == 0:
		del pred[t][f]
	if len(succ[f]) == 0:
		zero.append(f)
N, M = map(int, input().split())
succ = [{} for i in range(N)]
pred = [{} for i in range(N)]
zero = []
zero_p = 0
start = 0
ans = []
for i in range(M):
	f, t = map(int, input().split())
	succ[f - 1][t - 1] = succ[f - 1].get(t - 1, 0) + 1
	pred[t - 1][f - 1] = pred[t - 1].get(f - 1, 0) + 1
for i in range(N):
	if len(succ[i]) == 0:
		zero.append(i)
while 1:
	while len(zero) > zero_p:
		t = zero[zero_p]
		erase = []
		for f in pred[t]:
			erase += [(f, t)] * succ[f][t]
		for e in erase:
			ans.append(e)
			remove_edge(e[0], e[1], succ, pred, zero)
		zero_p += 1
	if zero_p == N:
		break
	while len(succ[start]) == 0:
		start = (start + 1) % N
	path = [start]
	path_s = set(path)
	while 1:
		nex = choice(succ[path[-1]])
		path.append(nex)
		if nex in path_s:
			break
		path_s.add(nex)
	for i in range(path.index(nex), len(path) - 1):
		remove_edge(path[i], path[i + 1], succ, pred, zero)
print(N, len(ans))
for i in ans:
	print(i[0] + 1, i[1] + 1)
0