結果

問題 No.1421 国勢調査 (Hard)
ユーザー tamatotamato
提出日時 2021-03-05 22:49:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,216 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 81,828 KB
最終ジャッジ日時 2024-10-07 03:47:22
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,724 KB
testcase_01 AC 36 ms
53,068 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
58,988 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 41 ms
58,688 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
60,484 KB
testcase_13 AC 39 ms
59,800 KB
testcase_14 AC 44 ms
61,624 KB
testcase_15 AC 43 ms
61,012 KB
testcase_16 WA -
testcase_17 AC 41 ms
61,500 KB
testcase_18 AC 40 ms
59,540 KB
testcase_19 AC 39 ms
60,096 KB
testcase_20 AC 39 ms
58,996 KB
testcase_21 AC 42 ms
58,760 KB
testcase_22 AC 145 ms
81,672 KB
testcase_23 AC 147 ms
81,296 KB
testcase_24 AC 147 ms
81,352 KB
testcase_25 AC 151 ms
81,308 KB
testcase_26 AC 156 ms
81,560 KB
testcase_27 AC 146 ms
81,244 KB
testcase_28 AC 145 ms
81,828 KB
testcase_29 AC 150 ms
81,484 KB
testcase_30 AC 155 ms
81,540 KB
testcase_31 AC 148 ms
81,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    N, M = map(int, input().split())
    A = [[0] * N for _ in range(M)]
    Y = [0] * M
    for i in range(M):
        a = int(input())
        B = list(map(int, input().split()))
        y = int(input())
        Y[i] = y
        for b in B:
            A[i][b-1] = 1

    rank = 0
    for j in range(N):
        for i in range(rank, M):
            if A[i][j]:
                if i != rank:
                    A[i], A[rank] = A[rank], A[i]
                    Y[i], Y[rank] = Y[rank], Y[i]
                for ii in range(M):
                    if ii != rank:
                        if A[ii][j]:
                            for jj in range(N):
                                A[ii][jj] ^= A[rank][jj]
                            Y[ii] ^= Y[rank]
                rank += 1
                break
    for i in range(rank, M):
        if Y[i]:
            print(-1)
            exit()
    ans = [0] * N
    for i in range(rank):
        for j in range(M):
            if A[i][j]:
                ans[j] = Y[i]
                break
    for i in range(N):
        print(ans[i])


if __name__ == '__main__':
    main()
0