結果

問題 No.1421 国勢調査 (Hard)
ユーザー convexineqconvexineq
提出日時 2021-03-08 00:43:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 77,100 KB
最終ジャッジ日時 2024-10-09 10:56:16
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,420 KB
testcase_01 AC 38 ms
52,828 KB
testcase_02 AC 38 ms
53,352 KB
testcase_03 AC 40 ms
54,120 KB
testcase_04 AC 38 ms
53,816 KB
testcase_05 AC 41 ms
52,952 KB
testcase_06 AC 41 ms
53,208 KB
testcase_07 AC 39 ms
53,536 KB
testcase_08 AC 38 ms
54,324 KB
testcase_09 AC 39 ms
54,792 KB
testcase_10 AC 40 ms
53,152 KB
testcase_11 AC 38 ms
52,936 KB
testcase_12 AC 38 ms
52,468 KB
testcase_13 AC 38 ms
53,688 KB
testcase_14 AC 38 ms
53,288 KB
testcase_15 AC 37 ms
53,496 KB
testcase_16 AC 39 ms
52,812 KB
testcase_17 AC 39 ms
54,344 KB
testcase_18 AC 39 ms
54,380 KB
testcase_19 AC 38 ms
53,444 KB
testcase_20 AC 39 ms
53,196 KB
testcase_21 AC 38 ms
53,140 KB
testcase_22 AC 121 ms
76,860 KB
testcase_23 AC 114 ms
76,676 KB
testcase_24 AC 113 ms
76,640 KB
testcase_25 AC 114 ms
76,620 KB
testcase_26 AC 116 ms
77,100 KB
testcase_27 AC 115 ms
76,484 KB
testcase_28 AC 113 ms
77,084 KB
testcase_29 AC 114 ms
76,532 KB
testcase_30 AC 114 ms
76,668 KB
testcase_31 AC 113 ms
76,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve_linear_equation_F2_col(A,b,m):
    assert len(A)==len(b)
    n = len(A)
    for i in range(n):
        idx = max(range(i,n),key=lambda x:A[x])
        if A[idx]==0:
            rank = i
            break
        if idx != i:
            A[i],A[idx] = A[idx],A[i]
            b[i],b[idx] = b[idx],b[i]
        for j in range(n):
            if i != j and A[j] > A[j]^A[i]:
                A[j] ^= A[i]
                b[j] ^= b[i]
    else:
        rank = n

    if any(b[i] for i in range(rank,n)):
        return [-1]

    ans = [0]*m
    for i in range(rank):
        ans[A[i].bit_length()-1] = b[i]
    return ans

n,m = map(int,input().split())
A = [0]*m
Y = [0]*m
for i in range(m):
    _ = int(input())
    *a, = map(int,input().split())
    for ai in a:
        A[i] |= 1<<(ai-1)
    Y[i] = int(input())

x = solve_linear_equation_F2_col(A,Y,n)
print(*x,sep="\n")
0