結果

問題 No.1640 簡単な色塗り
ユーザー kept1994kept1994
提出日時 2021-09-08 02:11:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,542 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 106,520 KB
最終ジャッジ日時 2024-06-29 17:11:33
合計ジャッジ時間 17,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
54,516 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
54,736 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 145 ms
79,928 KB
testcase_31 AC 322 ms
100,424 KB
testcase_32 AC 295 ms
97,720 KB
testcase_33 AC 238 ms
90,348 KB
testcase_34 AC 267 ms
94,832 KB
testcase_35 AC 249 ms
90,556 KB
testcase_36 AC 146 ms
79,860 KB
testcase_37 AC 160 ms
81,120 KB
testcase_38 AC 294 ms
99,080 KB
testcase_39 AC 198 ms
85,144 KB
testcase_40 AC 194 ms
84,360 KB
testcase_41 AC 264 ms
93,644 KB
testcase_42 AC 206 ms
85,628 KB
testcase_43 AC 213 ms
88,352 KB
testcase_44 AC 208 ms
86,504 KB
testcase_45 AC 192 ms
84,880 KB
testcase_46 AC 148 ms
80,504 KB
testcase_47 AC 130 ms
78,772 KB
testcase_48 AC 296 ms
100,384 KB
testcase_49 AC 110 ms
77,812 KB
testcase_50 AC 42 ms
55,892 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
from collections import defaultdict
from collections import deque

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

    """ 要素xの値を取得。"""
    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    """ 2つの要素の併合。"""
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x
        return

    """ 要素xの属する集合の要素数を取得。"""
    def size(self, x):
        return -self.parents[self.find(x)]

    """ 2つの要素が同一の集合に属するか。"""
    def same(self, x, y):
        return self.find(x) == self.find(y)

    """ 要素xと同一の集合の要素を全取得。
    計算量 : O(N)
    """
    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    """ 各集合の根を全取得。
    計算量 : O(N)
    """
    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    """ 集合の個数を取得。
    計算量 : O(N)
    """
    def group_count(self):
        return len(self.roots())

    """ 全集合の要素一覧を取得。
    計算量 : O(N)
    """
    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

def main():
    N = int(input())
    uf = UnionFind(N)
    G = [[] for _ in range(N)]
    for nn in range(N):
        a, b = map(lambda i: int(i) - 1, input().split())
        G[a].append((b, nn)) # 答えは順番に出力するので保持しておく必要がある。
        if a != b:
            G[b].append((a, nn))
        uf.union(a, b)
    
    seen=[0]*N
    ans=[-1]*N # 答え出力用
    for _, linked in uf.all_group_members().items():
        E = 0
        for i in linked:
            E = len(G[i])
        if E != len(linked):
            print("No")
            return
        
    ans = 0
    print(ans)
    return
    

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