結果

問題 No.2664 Prime Sum
ユーザー chineristACchineristAC
提出日時 2024-03-09 00:01:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,310 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 74,384 KB
最終ジャッジ日時 2024-09-29 20:59:09
合計ジャッジ時間 3,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,308 KB
testcase_01 AC 44 ms
56,520 KB
testcase_02 AC 45 ms
56,216 KB
testcase_03 AC 49 ms
62,440 KB
testcase_04 AC 43 ms
56,424 KB
testcase_05 AC 55 ms
67,468 KB
testcase_06 AC 53 ms
65,684 KB
testcase_07 AC 51 ms
63,296 KB
testcase_08 AC 48 ms
63,680 KB
testcase_09 AC 45 ms
56,220 KB
testcase_10 AC 52 ms
64,156 KB
testcase_11 AC 45 ms
57,444 KB
testcase_12 AC 52 ms
64,788 KB
testcase_13 AC 57 ms
66,964 KB
testcase_14 AC 65 ms
72,648 KB
testcase_15 AC 70 ms
74,172 KB
testcase_16 AC 65 ms
71,720 KB
testcase_17 AC 51 ms
62,996 KB
testcase_18 AC 49 ms
63,072 KB
testcase_19 AC 49 ms
63,268 KB
testcase_20 AC 51 ms
65,072 KB
testcase_21 AC 55 ms
68,040 KB
testcase_22 AC 54 ms
66,068 KB
testcase_23 AC 65 ms
74,384 KB
testcase_24 AC 46 ms
56,260 KB
testcase_25 AC 44 ms
56,840 KB
testcase_26 AC 47 ms
56,348 KB
testcase_27 AC 53 ms
63,400 KB
testcase_28 AC 45 ms
57,896 KB
testcase_29 AC 49 ms
62,372 KB
testcase_30 AC 45 ms
57,188 KB
testcase_31 AC 45 ms
56,744 KB
testcase_32 AC 46 ms
57,116 KB
testcase_33 AC 49 ms
62,652 KB
testcase_34 AC 49 ms
63,064 KB
testcase_35 AC 50 ms
63,404 KB
testcase_36 AC 44 ms
57,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

class UnionFindVerSize():
    def __init__(self, N):
        self._parent = [n for n in range(0, N)]
        self._size = [1] * N
        self.group = N

    def find_root(self, x):
        if self._parent[x] == x: return x
        self._parent[x] = self.find_root(self._parent[x])
        return self._parent[x]

    def unite(self, x, y):
        gx = self.find_root(x)
        gy = self.find_root(y)
        if gx == gy: return

        self.group -= 1

        if self._size[gx] < self._size[gy]:
            self._parent[gx] = gy
            self._size[gy] += self._size[gx]
        else:
            self._parent[gy] = gx
            self._size[gx] += self._size[gy]

    def get_size(self, x):
        return self._size[self.find_root(x)]

    def is_same_group(self, x, y):
        return self.find_root(x) == self.find_root(y)

n,m = mi()
uf = UnionFindVerSize(2*n)
for i in range(m):
    a,b = mi()
    a,b = a-1,b-1
    uf.unite(2*a,2*b+1)
    uf.unite(2*a+1,2*b)

    if uf.is_same_group(2*a,2*a+1):
        print("No")
        exit()
print("Yes")

0