結果

問題 No.2236 Lights Out On Simple Graph
ユーザー rlangevinrlangevin
提出日時 2023-03-03 22:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,134 ms / 4,000 ms
コード長 2,912 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 77,060 KB
最終ジャッジ日時 2024-09-17 23:35:24
合計ジャッジ時間 8,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,876 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 38 ms
53,120 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 88 ms
76,468 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 39 ms
52,992 KB
testcase_10 AC 86 ms
76,800 KB
testcase_11 AC 412 ms
76,620 KB
testcase_12 AC 80 ms
74,968 KB
testcase_13 AC 63 ms
68,540 KB
testcase_14 AC 83 ms
76,516 KB
testcase_15 AC 45 ms
62,184 KB
testcase_16 AC 39 ms
53,704 KB
testcase_17 AC 105 ms
76,420 KB
testcase_18 AC 38 ms
53,292 KB
testcase_19 AC 58 ms
64,624 KB
testcase_20 AC 37 ms
53,840 KB
testcase_21 AC 35 ms
53,172 KB
testcase_22 AC 35 ms
53,736 KB
testcase_23 AC 77 ms
76,496 KB
testcase_24 AC 63 ms
72,956 KB
testcase_25 AC 39 ms
53,392 KB
testcase_26 AC 35 ms
54,256 KB
testcase_27 AC 68 ms
73,976 KB
testcase_28 AC 39 ms
54,104 KB
testcase_29 AC 37 ms
53,488 KB
testcase_30 AC 36 ms
53,944 KB
testcase_31 AC 36 ms
53,376 KB
testcase_32 AC 36 ms
53,576 KB
testcase_33 AC 35 ms
53,888 KB
testcase_34 AC 36 ms
53,176 KB
testcase_35 AC 97 ms
77,060 KB
testcase_36 AC 171 ms
76,684 KB
testcase_37 AC 74 ms
76,640 KB
testcase_38 AC 233 ms
76,756 KB
testcase_39 AC 2,134 ms
76,276 KB
testcase_40 AC 81 ms
76,688 KB
testcase_41 AC 80 ms
76,740 KB
testcase_42 AC 64 ms
73,336 KB
testcase_43 AC 73 ms
76,608 KB
testcase_44 AC 200 ms
76,324 KB
testcase_45 AC 64 ms
72,300 KB
testcase_46 AC 62 ms
72,784 KB
testcase_47 AC 58 ms
68,876 KB
testcase_48 AC 72 ms
73,424 KB
testcase_49 AC 83 ms
76,708 KB
testcase_50 AC 59 ms
75,400 KB
testcase_51 AC 50 ms
66,012 KB
testcase_52 AC 76 ms
76,316 KB
testcase_53 AC 36 ms
53,992 KB
testcase_54 AC 90 ms
76,216 KB
testcase_55 AC 279 ms
76,692 KB
testcase_56 AC 144 ms
76,396 KB
testcase_57 AC 207 ms
76,620 KB
testcase_58 AC 118 ms
75,804 KB
testcase_59 AC 211 ms
76,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]
    
def non_rec_dfs(s, ans):
    stack = []
    stack.append(~s)
    stack.append(s)
    par = [-1] * N
    while stack:
        u = stack.pop()
        seen[u] = 1
        if u >= 0:
            stack.append(~u)
            for v in G[u]:
                if v == par[u]:
                    continue
                par[v] = u
                stack.append(v)
        else:
            u = ~u
            if D[u] == 1 and par[u] != -1:
                D[u] = 0
                D[par[u]] = 1 - D[par[u]]
                ans += 1
    return ans

# https://qiita.com/zawawahoge/items/8bbd4c2319e7f7746266
def popcount(x):
    '''xの立っているビット数をカウントする関数
    (xは64bit整数)'''

    # 2bitごとの組に分け、立っているビット数を2bitで表現する
    x = x - ((x >> 1) & 0x5555555555555555)

    # 4bit整数に 上位2bit + 下位2bit を計算した値を入れる
    x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333)

    x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f # 8bitごと
    x = x + (x >> 8) # 16bitごと
    x = x + (x >> 16) # 32bitごと
    x = x + (x >> 32) # 64bitごと = 全部の合計
    return x & 0x0000007f

N, M = map(int, input().split())
G = [[] for i in range(N)]
A, B = [], []
U = UnionFind(N)
for i in range(M):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    if U.is_same(a, b):
        A.append(a)
        B.append(b)
    else:
        G[a].append(b)
        G[b].append(a)
        U.union(a, b)
C = list(map(int, input().split()))
N2 = len(A)
inf = 10 ** 18
ans = inf
for s in range(1 << N2):
    D = [0] * N
    val = popcount(s)
    if val > ans:
        continue
    for i in range(N):
        D[i] = C[i]
    for i in range(N2):
        if (s >> i) & 1:
            D[A[i]] = 1 - D[A[i]]
            D[B[i]] = 1 - D[B[i]]
    seen = [0] * N
    for i in range(N):
        if seen[i]:
            continue
        val = non_rec_dfs(i, val)
        if val > ans:
            continue
    if sum(D) == 0:
        ans = min(ans, val)
        
print(ans) if ans != inf else print(-1)
0