結果

問題 No.1640 簡単な色塗り
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-06 22:56:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 2,377 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 87,372 KB
実行使用メモリ 847,612 KB
最終ジャッジ日時 2023-09-12 03:02:33
合計ジャッジ時間 34,680 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
71,908 KB
testcase_01 AC 86 ms
71,668 KB
testcase_02 AC 86 ms
71,788 KB
testcase_03 AC 89 ms
71,540 KB
testcase_04 AC 358 ms
139,956 KB
testcase_05 AC 1,068 ms
260,608 KB
testcase_06 AC 90 ms
71,640 KB
testcase_07 AC 89 ms
71,764 KB
testcase_08 AC 89 ms
71,536 KB
testcase_09 AC 91 ms
71,756 KB
testcase_10 AC 1,075 ms
148,168 KB
testcase_11 AC 901 ms
127,528 KB
testcase_12 AC 858 ms
124,296 KB
testcase_13 AC 1,264 ms
168,384 KB
testcase_14 AC 1,282 ms
173,452 KB
testcase_15 AC 702 ms
113,772 KB
testcase_16 AC 813 ms
121,528 KB
testcase_17 AC 1,196 ms
167,716 KB
testcase_18 AC 330 ms
89,940 KB
testcase_19 AC 828 ms
121,756 KB
testcase_20 AC 986 ms
135,856 KB
testcase_21 AC 858 ms
127,440 KB
testcase_22 AC 265 ms
89,436 KB
testcase_23 AC 1,067 ms
146,448 KB
testcase_24 AC 584 ms
100,476 KB
testcase_25 AC 1,005 ms
122,896 KB
testcase_26 AC 1,335 ms
149,008 KB
testcase_27 AC 665 ms
109,712 KB
testcase_28 AC 1,276 ms
177,228 KB
testcase_29 AC 1,191 ms
152,652 KB
testcase_30 AC 722 ms
262,968 KB
testcase_31 MLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
07_evil_01.txt -- -
07_evil_02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 7)
input = sys.stdin.buffer.readline
#Union-Find
class UnionFind():
    def __init__(self, n: int) -> None:
        self.n = n
        self.par = list(range(self.n))
        self.rank = [1] * self.n

    def find(self, x: int) -> int:
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def unite(self, x: int, y: int) -> None:
        p = self.find(x)
        q = self.find(y)
        if p == q:
            return None
        if p > q:
            p, q = q, p
        self.rank[p] += self.rank[q]
        self.par[q] = p

    def same(self, x: int, y: int) -> bool:
        return self.find(x) == self.find(y)

    def size(self, x: int) -> int:
        return self.rank[x]
def main():
    n = int(input())
    G = [[] for i in range(n)]
    UF = UnionFind(n)
    from collections import defaultdict
    ed_ind = defaultdict(list)
    for i in range(n):
        a, b = map(int, input().split())
        if a > b: a, b = b, a
        G[a - 1].append(b - 1)
        G[b - 1].append(a - 1)
        UF.unite(a - 1, b - 1)
        ed_ind[(a - 1, b - 1)].append(i)
    done = [0] * n
    visit = [0] * n
    used = defaultdict(int)
    def dfs(v):
        visit[v] = 1
        for u in G[v]:
            if not visit[u]: 
                dfs(u)
                used[(min(u, v), max(u, v))] += 1
    for i in range(n):
        dfs(i)
    def dfs2(v):
        for u in G[v]:
            if used[(min(u, v), max(u, v))] > 0:
                for i in ed_ind[(min(u, v), max(u, v))]:
                    if ans[i] == 0:
                        ans[i] = u + 1
                        dfs2(u)
                        break
    ans = [0] * n
    for i in range(n):
        if not done[UF.find(i)]:
            for v in G[i]:
                if used[(min(v, i), max(v, i))] < len(ed_ind[(min(v, i), max(v, i))]):
                    for x in ed_ind[(min(v, i), max(v, i))]:
                        if ans[x] == 0: 
                            ans[x] = i + 1
                            dfs2(i)
                            break
                    done[UF.find(i)] = 1
                    break
    if any(i == 0 for i in ans) or len(set(ans)) != n: exit(print("No"))
    print("Yes")
    print(*ans, sep="\n")
if __name__ == '__main__':
    main()
    
0