結果

問題 No.2895 Zero XOR Subset
ユーザー Yukino DX.Yukino DX.
提出日時 2024-10-21 23:23:11
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,476 bytes
コンパイル時間 18,408 ms
コンパイル使用メモリ 403,432 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-10-21 23:23:36
合計ジャッジ時間 25,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,824 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,824 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 WA -
testcase_07 AC 1 ms
6,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,820 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
6,820 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 WA -
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,820 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
6,820 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashSet;

use proconio::input;

fn main() {
    input! {
        mut n:usize,
        a:[usize;n],
    }
    const D: usize = 60;

    for i in 0..n {
        if a[i] == 0 {
            println!("1\n{}", i + 1);
            return;
        }
    }

    let n = n.min(100);
    let mut mat = vec![vec![0; n]; D];
    for i in 0..n {
        for j in 0..D {
            if a[i] & (1 << j) != 0 {
                mat[j][i] = 1;
            }
        }
    }

    // show(&mat);
    let mut rank = 0;
    let mut pivots = vec![];
    for i in 0..n {
        let Some(id)=(rank..D).find(|&ii|mat[ii][i]==1)else{
            continue;
        };
        pivots.push((rank, i));
        for j in 0..n {
            let tmp = mat[rank][j];
            mat[rank][j] = mat[id][j];
            mat[id][j] = tmp;
        }

        for ii in 0..D {
            if ii == rank || mat[ii][i] == 0 {
                continue;
            }

            for j in 0..n {
                mat[ii][j] ^= mat[rank][j];
            }
        }

        rank += 1;
        // show(&mat);
    }

    if rank == n {
        println!("-1");
        return;
    }

    let mut ans = HashSet::new();
    for &(py, px) in pivots.iter() {
        for i in px..n {
            if mat[py][i] == 0 {
                continue;
            }

            ans.insert(i + 1);
        }
    }

    println!("{}", ans.len());
    for i in ans {
        print!("{} ", i);
    }
    println!()
}
0