結果

問題 No.2563 色ごとのグループ
ユーザー mealymealy
提出日時 2023-12-02 15:15:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,790 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 175,036 KB
最終ジャッジ日時 2024-09-26 18:20:44
合計ジャッジ時間 9,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,400 KB
testcase_01 AC 38 ms
54,528 KB
testcase_02 AC 43 ms
54,400 KB
testcase_03 AC 41 ms
54,400 KB
testcase_04 AC 41 ms
54,784 KB
testcase_05 AC 41 ms
54,528 KB
testcase_06 AC 42 ms
54,360 KB
testcase_07 AC 40 ms
54,144 KB
testcase_08 AC 40 ms
54,400 KB
testcase_09 AC 42 ms
56,064 KB
testcase_10 AC 41 ms
55,040 KB
testcase_11 AC 42 ms
55,552 KB
testcase_12 AC 42 ms
55,424 KB
testcase_13 AC 40 ms
54,784 KB
testcase_14 AC 88 ms
77,696 KB
testcase_15 AC 86 ms
77,464 KB
testcase_16 AC 91 ms
77,440 KB
testcase_17 AC 87 ms
77,308 KB
testcase_18 AC 66 ms
72,448 KB
testcase_19 AC 90 ms
77,152 KB
testcase_20 AC 110 ms
80,608 KB
testcase_21 AC 116 ms
79,228 KB
testcase_22 AC 109 ms
79,360 KB
testcase_23 AC 108 ms
79,828 KB
testcase_24 AC 249 ms
103,496 KB
testcase_25 AC 234 ms
100,332 KB
testcase_26 AC 279 ms
108,876 KB
testcase_27 AC 301 ms
108,544 KB
testcase_28 AC 317 ms
112,648 KB
testcase_29 AC 393 ms
124,312 KB
testcase_30 AC 419 ms
124,616 KB
testcase_31 AC 423 ms
124,312 KB
testcase_32 AC 430 ms
124,696 KB
testcase_33 AC 755 ms
174,328 KB
testcase_34 WA -
testcase_35 AC 733 ms
174,536 KB
testcase_36 AC 736 ms
174,136 KB
testcase_37 AC 744 ms
175,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Input_kyopro:
    def II(self): return int(input())
    def MI(self): return map(int,input().split())
    def MS(self): return map(str,input().split())
    def LMI(self): return list(self.MI())
    def LMS(self): return list(self.MS())
    def LLI(self,N): return [self.LMI() for _ in range(N)]
    def LLS(self,N): return [self.LMS() for _ in range(N)]
    def LS(self,N): return [input() for _ in range(N)]
    def LSL(self,N): return [list(input()) for _ in range(N)]
    def LI(self,N): return [self.II() for _ in range(N)]
I=Input_kyopro()
#入力
import bisect,copy
class unionfind:
    def __init__(self,N):
        self.par=[-1]*(N+1)
        self.siz=[1]*(N+1)
        self.max_siz=1
        self.group=N
    def root(self,x):
        while True:
            if self.par[x]==-1:
                break
            x=self.par[x]
        return x
    def unite(self,u,v):
        RootU=self.root(u)
        RootV=self.root(v)
        if RootU==RootV:
            return
        self.group-=1
        if self.siz[RootU]<self.siz[RootV]:
            self.par[RootU]=RootV
            self.siz[RootV]=self.siz[RootU]+self.siz[RootV]
            self.max_siz=max(self.max_siz,self.siz[RootV])
        else:
            self.par[RootV]=RootU
            self.siz[RootU]=self.siz[RootU]+self.siz[RootV]
            self.max_siz=max(self.max_siz,self.siz[RootV])
    def same(self,u,v):
        if self.root(u)==self.root(v):
            return True
        else:
            return False
    def Max_size(self):
        return self.max_siz
    def group_count(self):
        return self.group
    def get_roots(self):
        return set(self.par)-{-1}
    def get_size(self,x):
        return self.siz[self.root(x)]
class CC:
    def __init__(self):
        self.xs=[]
        self.builded=0
    def add(self,x):
        self.xs.append(x)
    def build(self):
        self.xs=list(set(self.xs))
        self.xs.sort()
        self.builded=1
    def index(self,x):
        if not self.builded:
            self.build()
        return bisect.bisect_right(self.xs,x)-1
    def __getitem__(self,item):
        if not self.builded:
            self.build()
        return self.xs[item]
    def size(self):
        if not self.builded:
            self.build()
        return len(self.xs)
N,M=I.MI()
C=I.LMI()
uv=I.LLI(M)
count=[0]*N
edge=[[] for _ in range(N)]
for u,v in uv:
    u-=1
    v-=1
    if C[u]==C[v]:
        edge[C[u]-1].append((u,v))
ans=0
color=[[] for _ in range(N)]
for i in range(N):
    color[C[i]-1].append(i+1)
for i in range(N):
    cc=CC()
    for c in color[i]:
        cc.add(c)
    cc.build()
    uf=unionfind(cc.size())
    for u,v in edge[i]:
        uf.unite(cc.index(u),cc.index(v))
    a=uf.group_count()
    if a>=2:
        ans+=a-1
print(ans)


    
    
0