結果

問題 No.2464 To DAG
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-26 09:30:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,023 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 256,820 KB
最終ジャッジ日時 2024-06-09 14:38:27
合計ジャッジ時間 31,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,944 KB
testcase_01 AC 35 ms
55,776 KB
testcase_02 AC 941 ms
256,820 KB
testcase_03 AC 1,023 ms
164,544 KB
testcase_04 AC 948 ms
156,128 KB
testcase_05 AC 920 ms
153,192 KB
testcase_06 AC 908 ms
151,856 KB
testcase_07 AC 664 ms
132,556 KB
testcase_08 AC 783 ms
141,888 KB
testcase_09 AC 754 ms
137,220 KB
testcase_10 AC 741 ms
135,896 KB
testcase_11 AC 542 ms
117,516 KB
testcase_12 AC 451 ms
112,248 KB
testcase_13 AC 554 ms
121,476 KB
testcase_14 AC 678 ms
130,676 KB
testcase_15 AC 828 ms
166,608 KB
testcase_16 AC 481 ms
124,148 KB
testcase_17 AC 133 ms
81,368 KB
testcase_18 AC 302 ms
104,620 KB
testcase_19 AC 35 ms
54,212 KB
testcase_20 AC 36 ms
54,240 KB
testcase_21 AC 37 ms
55,504 KB
testcase_22 AC 545 ms
153,288 KB
testcase_23 AC 547 ms
150,892 KB
testcase_24 AC 539 ms
156,140 KB
testcase_25 AC 563 ms
156,816 KB
testcase_26 AC 259 ms
93,896 KB
testcase_27 AC 1,002 ms
169,472 KB
testcase_28 AC 953 ms
169,500 KB
testcase_29 AC 1,009 ms
162,712 KB
testcase_30 AC 741 ms
129,052 KB
testcase_31 AC 658 ms
124,548 KB
testcase_32 AC 604 ms
124,576 KB
testcase_33 AC 880 ms
178,804 KB
testcase_34 AC 517 ms
127,532 KB
testcase_35 AC 488 ms
155,036 KB
testcase_36 AC 490 ms
157,416 KB
testcase_37 AC 461 ms
158,236 KB
testcase_38 AC 476 ms
158,100 KB
testcase_39 AC 138 ms
90,532 KB
testcase_40 AC 139 ms
90,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def DFS(pos):
    global graph,delete
    rem=deque([(pos,-1)])
    use={pos}
    while len(rem)>0:
        now=rem[-1][0]
        ok=False
        for i,j in graph[now]:
            ok=True
            graph[now].discard((i,j))
            if i in use:
                delete.add(j)
                while rem[-1][0]!=i:
                    delete.add(rem[-1][1])
                    use.discard(rem[-1][0])
                    rem.pop()
            else:
                rem.append((i,j))
                use.add(i)
            break
        if not(ok):
            use.discard(rem[-1][0])
            rem.pop()

N,M=map(int,input().split())
graph=[set() for i in range(N)]
edge=[]
for i in range(M):
    U,V=map(int,input().split())
    edge.append((U,V))
    graph[U-1].add((V-1,i))
delete=set()
rem=[]
for i in range(N):
    DFS(i)
print(N,M-len(delete))
for i in range(M):
    if i not in delete:
        print(*edge[i])
0