結果

問題 No.1553 Lovely City
ユーザー neterukunneterukun
提出日時 2021-06-18 21:50:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,462 ms / 2,000 ms
コード長 3,605 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 241,428 KB
最終ジャッジ日時 2024-06-22 20:15:01
合計ジャッジ時間 29,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,120 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 352 ms
163,048 KB
testcase_03 AC 46 ms
56,064 KB
testcase_04 AC 48 ms
57,088 KB
testcase_05 AC 65 ms
66,048 KB
testcase_06 AC 60 ms
64,512 KB
testcase_07 AC 53 ms
61,440 KB
testcase_08 AC 913 ms
166,140 KB
testcase_09 AC 1,048 ms
177,344 KB
testcase_10 AC 1,134 ms
197,628 KB
testcase_11 AC 888 ms
157,520 KB
testcase_12 AC 1,096 ms
200,308 KB
testcase_13 AC 875 ms
151,200 KB
testcase_14 AC 983 ms
171,432 KB
testcase_15 AC 951 ms
173,460 KB
testcase_16 AC 1,063 ms
175,116 KB
testcase_17 AC 906 ms
173,772 KB
testcase_18 AC 1,403 ms
235,692 KB
testcase_19 AC 1,420 ms
236,524 KB
testcase_20 AC 1,413 ms
225,260 KB
testcase_21 AC 1,365 ms
234,084 KB
testcase_22 AC 1,320 ms
223,964 KB
testcase_23 AC 1,452 ms
241,428 KB
testcase_24 AC 1,462 ms
225,412 KB
testcase_25 AC 1,381 ms
222,444 KB
testcase_26 AC 1,413 ms
236,036 KB
testcase_27 AC 1,399 ms
232,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline


class UnionFind:
    def __init__(self, n):
        self.parent = [-1] * n
        self.n = n
        self.cnt = n

    def root(self, x):
        if self.parent[x] < 0:
            return x
        else:
            self.parent[x] = self.root(self.parent[x])
            return self.parent[x]

    def merge(self, x, y):
        x = self.root(x)
        y = self.root(y)
        if x == y:
            return False
        if self.parent[x] > self.parent[y]:
            x, y = y, x
        self.parent[x] += self.parent[y]
        self.parent[y] = x
        self.cnt -= 1
        return True

    def same(self, x, y):
        return self.root(x) == self.root(y)

    def size(self, x):
        return -self.parent[self.root(x)]

    def count(self):
        return self.cnt

    def groups(self):
        res = [[] for _ in range(self.n)]
        for i in range(self.n):
            res[self.root(i)].append(i)
        return [group for group in res if group]


class StronglyConnectedComponents:
    def __init__(self, n):
        self.n = n
        self.graph = [[] for _ in range(n)]
        self.rev_graph = [[] for _ in range(n)]
        self.labels = [-1] * n
        self.lb_cnt = 0

    def add_edge(self, v, nxt_v):
        self.graph[v].append(nxt_v)
        self.rev_graph[nxt_v].append(v)

    def build(self):
        self.post_order = []
        self.used = [False] * self.n
        for v in range(self.n):
            if not self.used[v]:
                self._dfs(v)

        for v in reversed(self.post_order):
            if self.labels[v] == -1:
                self._rev_dfs(v)
                self.lb_cnt += 1

    def _dfs(self, v):
        stack = [v, 0]
        while stack:
            v, idx = stack[-2:]
            if not idx and self.used[v]:
                stack.pop()
                stack.pop()
            else:
                self.used[v] = True
                if idx < len(self.graph[v]):
                    stack[-1] += 1
                    stack.append(self.graph[v][idx])
                    stack.append(0)
                else:
                    stack.pop()
                    self.post_order.append(stack.pop())

    def _rev_dfs(self, v):
        stack = [v]
        self.labels[v] = self.lb_cnt
        while stack:
            v = stack.pop()
            for nxt_v in self.rev_graph[v]:
                if self.labels[nxt_v] != -1:
                    continue
                stack.append(nxt_v)
                self.labels[nxt_v] = self.lb_cnt

    def construct_dag(self):
        self.dag = [[] for i in range(self.lb_cnt)]
        self.groups = [[] for i in range(self.lb_cnt)]
        for v, lb in enumerate(self.labels):
            for nxt_v in self.graph[v]:
                nxt_lb = self.labels[nxt_v]
                if lb == nxt_lb:
                    continue
                self.dag[lb].append(nxt_lb)
            self.groups[lb].append(v)
        return self.dag, self.groups


n, m = map(int, input().split())
edges = [list(map(int, input().split())) for i in range(m)]

    
scc = StronglyConnectedComponents(n)
uf = UnionFind(n)
for u, v in edges:
    u -= 1
    v -= 1
    scc.add_edge(u, v)
    uf.merge(u, v)

scc.build()
dag, group = scc.construct_dag()


ans = []
for gp in uf.groups():
    gp = sorted(gp, key=lambda x: scc.labels[x])
    lb = [scc.labels[i] for i in gp]
    for i in range(len(gp) - 1):
        ans.append((gp[i] + 1, gp[i + 1] + 1))
    if len(set(lb)) != len(lb):
        ans.append((gp[-1] + 1, gp[0] + 1))

print(len(ans))
for res in ans:
    print(*res)
0