結果

問題 No.1553 Lovely City
ユーザー ygd.ygd.
提出日時 2021-06-19 18:31:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,095 ms / 2,000 ms
コード長 3,396 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 86,936 KB
実行使用メモリ 178,460 KB
最終ジャッジ日時 2023-09-05 01:07:00
合計ジャッジ時間 25,276 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
71,636 KB
testcase_01 AC 90 ms
71,652 KB
testcase_02 AC 91 ms
71,284 KB
testcase_03 AC 98 ms
72,440 KB
testcase_04 AC 99 ms
72,208 KB
testcase_05 AC 107 ms
76,408 KB
testcase_06 AC 107 ms
76,656 KB
testcase_07 AC 105 ms
76,096 KB
testcase_08 AC 807 ms
142,188 KB
testcase_09 AC 859 ms
146,844 KB
testcase_10 AC 932 ms
158,400 KB
testcase_11 AC 777 ms
133,112 KB
testcase_12 AC 911 ms
148,076 KB
testcase_13 AC 795 ms
135,212 KB
testcase_14 AC 854 ms
139,688 KB
testcase_15 AC 818 ms
139,532 KB
testcase_16 AC 890 ms
147,832 KB
testcase_17 AC 776 ms
136,232 KB
testcase_18 AC 1,080 ms
173,604 KB
testcase_19 AC 1,084 ms
178,432 KB
testcase_20 AC 1,091 ms
178,460 KB
testcase_21 AC 1,095 ms
176,212 KB
testcase_22 AC 1,084 ms
174,084 KB
testcase_23 AC 1,084 ms
173,612 KB
testcase_24 AC 1,091 ms
177,680 KB
testcase_25 AC 1,091 ms
173,784 KB
testcase_26 AC 1,091 ms
177,664 KB
testcase_27 AC 1,090 ms
177,408 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