結果

問題 No.2236 Lights Out On Simple Graph
ユーザー ShirotsumeShirotsume
提出日時 2023-03-03 22:56:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 5,845 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 81,732 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2023-10-18 03:19:12
合計ジャッジ時間 124,825 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,548 ms
76,704 KB
testcase_01 AC 46 ms
55,380 KB
testcase_02 AC 2,551 ms
76,700 KB
testcase_03 AC 75 ms
75,980 KB
testcase_04 AC 75 ms
75,812 KB
testcase_05 AC 49 ms
62,964 KB
testcase_06 AC 2,581 ms
77,004 KB
testcase_07 AC 2,583 ms
77,104 KB
testcase_08 AC 45 ms
55,380 KB
testcase_09 AC 2,553 ms
76,692 KB
testcase_10 AC 2,578 ms
77,052 KB
testcase_11 AC 2,565 ms
76,920 KB
testcase_12 AC 2,578 ms
77,008 KB
testcase_13 AC 2,575 ms
77,120 KB
testcase_14 AC 2,582 ms
77,008 KB
testcase_15 AC 2,564 ms
76,772 KB
testcase_16 AC 2,564 ms
76,964 KB
testcase_17 AC 2,576 ms
77,208 KB
testcase_18 AC 2,561 ms
76,772 KB
testcase_19 AC 2,573 ms
76,908 KB
testcase_20 AC 67 ms
73,548 KB
testcase_21 AC 73 ms
75,752 KB
testcase_22 AC 2,581 ms
76,988 KB
testcase_23 AC 2,580 ms
77,112 KB
testcase_24 AC 2,584 ms
77,012 KB
testcase_25 AC 2,577 ms
76,936 KB
testcase_26 AC 2,580 ms
77,044 KB
testcase_27 AC 2,582 ms
77,028 KB
testcase_28 AC 2,576 ms
77,008 KB
testcase_29 AC 75 ms
75,752 KB
testcase_30 AC 2,580 ms
76,988 KB
testcase_31 AC 2,577 ms
77,052 KB
testcase_32 AC 2,581 ms
76,988 KB
testcase_33 AC 2,580 ms
76,988 KB
testcase_34 AC 2,577 ms
76,988 KB
testcase_35 AC 2,585 ms
77,108 KB
testcase_36 AC 2,581 ms
77,228 KB
testcase_37 AC 2,582 ms
77,156 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 66 ms
72,648 KB
testcase_41 AC 61 ms
70,244 KB
testcase_42 AC 2,579 ms
77,012 KB
testcase_43 AC 2,573 ms
76,952 KB
testcase_44 AC 2,580 ms
77,044 KB
testcase_45 AC 2,582 ms
77,120 KB
testcase_46 AC 74 ms
75,980 KB
testcase_47 AC 2,582 ms
77,056 KB
testcase_48 AC 76 ms
75,980 KB
testcase_49 AC 73 ms
75,792 KB
testcase_50 AC 2,563 ms
76,896 KB
testcase_51 AC 2,577 ms
76,992 KB
testcase_52 AC 2,573 ms
76,988 KB
testcase_53 AC 55 ms
68,196 KB
testcase_54 AC 2,577 ms
77,032 KB
testcase_55 AC 2,582 ms
77,360 KB
testcase_56 AC 2,583 ms
77,196 KB
testcase_57 AC 2,582 ms
77,492 KB
testcase_58 AC 2,580 ms
77,492 KB
testcase_59 AC 2,580 ms
77,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 2
#これラストにします
class matrix():
    r = 1
    c = 1
    A = None
    mod = 2
    def __init__(self, r, c, mod = 2):
        self.r = r
        self.c = c
        self.A = [[0] * self.c for _ in range(self.r)]
        if mod is not None:
            self.mod = mod
    
    def makeone(r = 1):
        A = matrix(r, r, mod)
        for i in range(r):
            A[i, i] = 1
        return A
    def __getitem__(self, key):
        rnow, cnow = key
        return self.A[rnow][cnow]
    
    def __setitem__(self, key, value):
        rnow, cnow = key
        self.A[rnow][cnow] = value
    
    def __add__(self, other):
        assert self.r == other.r and self.c == other.c
        ret = matrix(self.r, self.c)
        for i in range(self.r):
            for j in range(self.c):
                ret[i, j] = self[i, j] + other[i, j]
                ret[i, j] %= self.mod
        return ret

    def __sub__(self, other):
        
        assert self.r == other.r and self.c == other.c
        ret = matrix(self.r, self.c)
        for i in range(self.r):
            for j in range(self.c):
                ret[i, j] = self[i, j] - other[i, j]
                ret[i, j] %= self.mod
        return ret

    def __mul__(self, other):

        assert self.c == other.r
        ret = matrix(self.r, other.c)
        for i in range(self.r):
            for j in range(self.c):
                for k in range(other.c):
                    ret[i, k] += self[i, j] * other[j, k]
                    ret[i, k] %= self.mod
        return ret

    def augment(self, other):

        assert self.r == other.r

        X = matrix(self.r, self.c + other.c, mod = self.mod)

        for i in range(self.r):
            for j in range(self.c):
                X[i, j] = self[i, j]
            for j in range(other.c):
                X[i, j + self.c] = other[i, j]
        
        return X
    
    def diminish(self, c):

        X = []

        for i in range(self.r):
            X.append((self.A[i][:c]))
        
        return matrix(self.r, c, mod = self.mod, A = X)
        
    def hakidashi(self):
        for i in range(self.c):
            for j in range(i + 1, self.r):
                if self.A[j][i] != 0:
                    for k in range(self.c):
                        self.A[j][k], self.A[i][k] = self.A[i][k], self.A[j][k]
                    break

        for i in range(self.r):
            for j in range(self.c):
                if self[i, j] != 0:
                    break
            else:
                continue
            K = pow(self[i, j], self.mod - 2, self.mod)

            for to in range(self.c):
                self[i, to] *= K
                self[i, to] %= self.mod

            for i2 in range(self.r):
                if i == i2:
                    continue
                time = self[i2, j]
                for j2 in range(self.c):
                    self[i2, j2] -= time * self[i, j2]
                    self[i2, j2] %= self.mod

            

        return self




    def inv(self):
        assert self.c == self.r

        one = matrix.makeone(r = self.r)
        new = self.augment(one)
        new.hakidashi()
        for i in range(self.r):
            for j in range(self.c):
                if i == j:
                    if new[i, j] != 1:
                        return 0, new
                else:
                    if new[i, j] != 0:
                        return 0, new
        
        X = matrix(self.r, self.c)

        for i in range(self.r):
            for j in range(self.c):
                X[i, j] = new[i, j + self.c]

        return 1, X     




    def lineareq(self, b):
        assert self.r == b.r
        assert b.c == 1
        Y = self.augment(b)
        Y = Y.hakidashi()
        B = [[0] * self.c for _ in range(self.c)]
        ans = [0] * self.c

        flag = [0] * self.c
        for i in range(self.r):
            j = 0
            while j < self.c and Y[i, j] == 0:
                j += 1
            if j == self.c:
                if Y[i, -1] != 0:
                    return None, None
                continue
            flag[j] = 1
            ans[j] = Y[i, -1]
            for k in range(j + 1, self.c):
                if Y[i, k] % self.mod != 0:
                    B[k][j] = (-Y[i, k])% self.mod
                    flag[k] = -1
        for i in range(self.c):
            if  flag[i] != 1:
                B[i][i] = 1
        B=[B[i] for i in range(self.c) if flag[i] != 1]
        return ans,B

    def print(self):
        for v in self.A:
            print(*v)


import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 2

n, m = mi()

EDGE = [[v - 1 for v in li()] for _ in range(m)]
graph = [[] for _ in range(n)]
for u, v in EDGE:
    graph[u].append(v)
    graph[v].append(u)

c = li()

A = matrix(n, m)
B = matrix(n, 1)

for i, V in enumerate(EDGE):
    u, v = V
    A[u, i] = 1
    A[v, i] = 1

for i in range(n):
    if c[i] == 1:
        B[i, 0] = 1
X, Y = A.lineareq(B)

if X is None:
    print(-1)
    exit()

YY = matrix(len(Y), m)

for i in range(len(Y)):
    for j in range(m):
        YY[i, j] = Y[i][j]
YY = YY.hakidashi()
for i in range(len(Y)):
    for j in range(m):
        Y[i][j] = YY[i, j]
ans = X.count(1)
if Y:
    import random
    import time
    t1 = time.time()
    while time.time() - t1 < 2.5:
        p = random.randint(0, len(Y) - 1)
        for i in range(m):
            X[i] ^= Y[p][i]
        if ans > X.count(1):
            ans = min(ans, X.count(1))




print(ans)




0