結果

問題 No.1553 Lovely City
ユーザー ygd.ygd.
提出日時 2021-06-19 18:31:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,055 ms / 2,000 ms
コード長 3,396 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 175,448 KB
最終ジャッジ日時 2024-06-22 22:15:05
合計ジャッジ時間 23,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,528 KB
testcase_01 AC 45 ms
54,656 KB
testcase_02 AC 44 ms
54,272 KB
testcase_03 AC 51 ms
56,064 KB
testcase_04 AC 53 ms
57,216 KB
testcase_05 AC 63 ms
65,536 KB
testcase_06 AC 65 ms
64,768 KB
testcase_07 AC 58 ms
61,952 KB
testcase_08 AC 760 ms
137,984 KB
testcase_09 AC 797 ms
148,932 KB
testcase_10 AC 887 ms
151,480 KB
testcase_11 AC 748 ms
128,852 KB
testcase_12 AC 885 ms
152,024 KB
testcase_13 AC 747 ms
136,948 KB
testcase_14 AC 777 ms
141,476 KB
testcase_15 AC 751 ms
139,604 KB
testcase_16 AC 843 ms
145,816 KB
testcase_17 AC 729 ms
134,504 KB
testcase_18 AC 995 ms
168,140 KB
testcase_19 AC 1,055 ms
174,448 KB
testcase_20 AC 1,018 ms
172,472 KB
testcase_21 AC 1,032 ms
175,448 KB
testcase_22 AC 1,030 ms
168,232 KB
testcase_23 AC 1,010 ms
169,032 KB
testcase_24 AC 1,046 ms
175,168 KB
testcase_25 AC 1,031 ms
167,684 KB
testcase_26 AC 977 ms
172,388 KB
testcase_27 AC 1,003 ms
170,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict 
from collections import deque

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
    def find(self, x):
        """
        x が属するグループを探索して親を出す。
        """
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    def union(self, x, y):
        """
        x と y のグループを結合
        """
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]
    def is_same(self, x, y):
        """
        x と y が同じグループか否か
        """
        return self.find(x) == self.find(y)
    def get_size(self, x):
        """
        x が属するグループの要素数
        """
        x = self.find(x)
        return self.size[x]


def topological(graph, deg):
    start = []
    for i in range(len(deg)):
        if deg[i] == 0:
            start.append(i)
    topo = []
    while start:
        v = start.pop()
        topo.append(v)
        for u in graph[v]:
            deg[u] -= 1
            if deg[u] == 0:
                start.append(u)
    return topo

def main():
    N,M = map(int,input().split())
    Q = []
    S = set([])
    for i in range(M):
        U,V = map(int,input().split())
        Q.append((U,V))
        S.add(U)
        S.add(V)
    L = list(S)
    n = len(S) #出てくる頂点の種類
    L.sort()
    dic = {} #元の番号→座圧後の番号
    revdic = {} #座圧後の番号→元の番号
    for i in range(n):
        dic[L[i]] = i
        revdic[i] = L[i]

    G = [[] for _ in range(n)]
    deg = [0]*n
    uf = UnionFind(n)
    for u,v in Q:
        uz = dic[u]
        vz = dic[v]
        G[uz].append(vz)
        deg[vz] += 1
        uf.union(uz,vz)
    #print(G)
    unidic = defaultdict(list)
    for i in range(n):
        par = uf.find(i)
        unidic[par].append(i)
    

    #連結成分ごと
    ans = []
    for unit in unidic.values():
        start = deque([])
        for x in unit:
            if deg[x] == 0:
                start.append(x)
        topo = []
        while start:
            v = start.pop()
            topo.append(v)
            for u in G[v]:
                deg[u] -= 1
                if deg[u] == 0:
                    start.append(u)
        #print("U",unit)
        #print("Topo",topo)

        if len(topo) == len(unit): #トポロジカルソート可能
            for i in range(len(topo)-1):
                s = topo[i]; t = topo[i+1]
                sori = revdic[s]; tori = revdic[t]
                ans.append([sori,tori])
        else:
            if len(unit) == 1:
                continue
            else:
                for i in range(len(unit)):
                    s = unit[i-1]; t = unit[i] #i==0の時に最後を持ってくる
                    sori = revdic[s]; tori = revdic[t]
                    ans.append([sori,tori])

        
    print(len(ans))
    for ret in ans:
        print(*ret)


if __name__ == '__main__':
    main()
0