結果

問題 No.2464 To DAG
ユーザー mymelochanmymelochan
提出日時 2023-09-08 22:44:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 785 ms / 2,000 ms
コード長 1,539 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,080 KB
最終ジャッジ日時 2024-06-26 15:59:03
合計ジャッジ時間 24,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,528 KB
testcase_01 AC 48 ms
54,144 KB
testcase_02 AC 537 ms
142,080 KB
testcase_03 AC 785 ms
128,640 KB
testcase_04 AC 666 ms
118,144 KB
testcase_05 AC 656 ms
115,072 KB
testcase_06 AC 605 ms
114,176 KB
testcase_07 AC 537 ms
107,520 KB
testcase_08 AC 587 ms
103,296 KB
testcase_09 AC 510 ms
97,408 KB
testcase_10 AC 478 ms
95,104 KB
testcase_11 AC 385 ms
91,136 KB
testcase_12 AC 324 ms
89,344 KB
testcase_13 AC 373 ms
89,344 KB
testcase_14 AC 502 ms
109,312 KB
testcase_15 AC 664 ms
125,184 KB
testcase_16 AC 396 ms
104,064 KB
testcase_17 AC 141 ms
81,792 KB
testcase_18 AC 268 ms
95,232 KB
testcase_19 AC 46 ms
54,656 KB
testcase_20 AC 46 ms
54,528 KB
testcase_21 AC 45 ms
54,528 KB
testcase_22 AC 290 ms
91,264 KB
testcase_23 AC 286 ms
90,112 KB
testcase_24 AC 273 ms
91,264 KB
testcase_25 AC 274 ms
91,392 KB
testcase_26 AC 225 ms
88,192 KB
testcase_27 AC 764 ms
130,816 KB
testcase_28 AC 768 ms
130,816 KB
testcase_29 AC 710 ms
126,464 KB
testcase_30 AC 506 ms
99,072 KB
testcase_31 AC 450 ms
93,696 KB
testcase_32 AC 422 ms
92,160 KB
testcase_33 AC 669 ms
123,648 KB
testcase_34 AC 376 ms
101,760 KB
testcase_35 AC 232 ms
94,592 KB
testcase_36 AC 235 ms
94,592 KB
testcase_37 AC 207 ms
93,824 KB
testcase_38 AC 199 ms
94,208 KB
testcase_39 AC 109 ms
98,432 KB
testcase_40 AC 114 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M = lmin()
ans = [[] for _ in range(N)]
G = [[] for _ in range(N)]
for _ in range(M):
    u,v = lmin()
    u,v = u-1,v-1
    G[u].append(v)

f = [0]*N
for i in range(N):
    if len(G[i]) == 0:
        continue
    cur = i
    E = []
    f[cur] = 1
    while True:
        #print(cur,E,G)
        #print(f)
        if not G[cur]:
            if not E:
                break
            else:
                u,v = E.pop()
                ans[u].append(v)
                f[cur] = 0
                cur = u
        else:
            nxt = G[cur].pop()
            if f[nxt]:
                tmp = cur
                f[cur] = 0
                while True:
                    u,v = E.pop()
                    tmp = u
                    if tmp == nxt:
                        break
                    f[tmp] = 0
                cur = tmp
            else:
                f[nxt] = 1
                E.append((cur,nxt))
                cur = nxt
    f[i] = 0

print(N,sum(len(g) for g in ans))
for i in range(N):
    for j in ans[i]:
        print(i+1,j+1)
0