結果

問題 No.2202 贅沢てりたまチキン
ユーザー roarisroaris
提出日時 2023-02-03 21:51:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 1,666 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,048 KB
最終ジャッジ日時 2024-07-02 19:43:45
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 49 ms
53,632 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 44 ms
54,144 KB
testcase_07 AC 44 ms
53,632 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 91 ms
107,904 KB
testcase_11 AC 44 ms
53,760 KB
testcase_12 AC 43 ms
53,888 KB
testcase_13 AC 43 ms
53,888 KB
testcase_14 AC 226 ms
103,552 KB
testcase_15 AC 231 ms
103,936 KB
testcase_16 AC 244 ms
115,048 KB
testcase_17 AC 237 ms
112,744 KB
testcase_18 AC 162 ms
93,056 KB
testcase_19 AC 171 ms
109,772 KB
testcase_20 AC 254 ms
109,036 KB
testcase_21 AC 251 ms
108,776 KB
testcase_22 AC 177 ms
90,752 KB
testcase_23 AC 289 ms
90,464 KB
testcase_24 AC 248 ms
93,568 KB
testcase_25 AC 582 ms
107,264 KB
testcase_26 AC 245 ms
104,064 KB
testcase_27 AC 249 ms
103,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N, M = map(int, input().split())
G = [[] for _ in range(N)]
uf = Unionfind(N)

for _ in range(M):
    u, v = map(int, input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)
    uf.unite(u-1, v-1)

rs = set(uf.root(v) for v in range(N))
color = [0]*N

for r in rs:
    q = deque([r])
    color[r] = 1
    odd_cycle = False
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if color[nv]==0:
                color[nv] = -color[v]
                q.append(nv)
            else:
                if color[v]==color[nv]:
                    odd_cycle = True
    
    if not odd_cycle:
        exit(print('No'))

print('Yes')
0