結果

問題 No.2464 To DAG
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-26 09:27:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 243,172 KB
最終ジャッジ日時 2024-06-09 14:37:47
合計ジャッジ時間 29,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,780 KB
testcase_01 AC 34 ms
54,452 KB
testcase_02 AC 818 ms
243,172 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 618 ms
130,992 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
54,572 KB
testcase_20 AC 41 ms
54,316 KB
testcase_21 AC 36 ms
55,108 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 231 ms
93,828 KB
testcase_27 AC 916 ms
169,424 KB
testcase_28 AC 933 ms
169,248 KB
testcase_29 AC 882 ms
162,732 KB
testcase_30 AC 701 ms
129,456 KB
testcase_31 AC 595 ms
124,816 KB
testcase_32 AC 547 ms
124,300 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 452 ms
157,748 KB
testcase_37 WA -
testcase_38 AC 439 ms
157,964 KB
testcase_39 AC 144 ms
90,464 KB
testcase_40 AC 146 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))
            break
        if not(ok):
            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