結果

問題 No.2895 Zero XOR Subset
ユーザー kakel-sankakel-san
提出日時 2024-10-03 23:36:33
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 3,611 bytes
コンパイル時間 13,124 ms
コンパイル使用メモリ 165,892 KB
実行使用メモリ 236,880 KB
最終ジャッジ日時 2024-10-03 23:37:14
合計ジャッジ時間 33,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,080 KB
testcase_01 AC 59 ms
30,208 KB
testcase_02 RE -
testcase_03 AC 59 ms
30,464 KB
testcase_04 AC 59 ms
30,464 KB
testcase_05 AC 59 ms
30,464 KB
testcase_06 RE -
testcase_07 AC 60 ms
30,464 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 61 ms
30,464 KB
testcase_11 AC 59 ms
30,452 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 59 ms
30,592 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 59 ms
30,464 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 59 ms
30,464 KB
testcase_21 AC 59 ms
30,464 KB
testcase_22 RE -
testcase_23 AC 58 ms
30,452 KB
testcase_24 AC 58 ms
30,452 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 58 ms
30,592 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 58 ms
30,592 KB
testcase_36 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (105 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        for (var i = 0; i < n; ++i) if (a[i] == 0)
        {
            WriteLine(1);
            WriteLine(i + 1);
            return;
        }
        var bitmax = 60;
        if (a.Length > bitmax + 1) a = a.Take(bitmax + 1).ToArray();
        var map = new int[bitmax][];
        for (var i = 0; i < bitmax; ++i)
        {
            map[i] = new int[n + 1];
            for (var j = 0; j < n; ++j) map[i][j] = (int)((a[j] >> i) & 1);
        }
        GaussJordanEliminationXor(map);
        var ans = Check(map);
        if (ans.Length == 0) WriteLine(-1);
        else
        {
            var a2 = new List<int>();
            for (var i = 0; i < ans.Length; ++i) if (ans[i] != 0) a2.Add(i + 1);
            WriteLine(a2.Count);
            WriteLine(string.Join(" ", a2));
        }
    }
    // XOR(= mod2の足し算)で掃き出し法を行う
    static void GaussJordanEliminationXor(int[][] map)
    {
        // 標準系にする
        var px = -1;
        for (var j = 0; j < map[0].Length - 1; ++j)
        {
            var x = px + 1;
            if (x >= map.Length) break;
            var sw = -1;
            for (var i = x; i < map.Length; ++i) if (map[i][j] != 0)
            {
                sw = i;
                break;
            }
            if (sw < 0) continue;
            if (x != sw) (map[x], map[sw]) = (map[sw], map[x]);
            for (var i = 0; i < map.Length; ++i) if (i != x)
            {
                if (map[i][j] != 0)
                {
                    for (var p = j; p < map[i].Length; ++p) map[i][p] = (map[i][p] + map[x][p]) & 1;
                }
            }
            px = x;
        }
    }
    // 掃き出し法の結果から解を求める
    static int[] Check(int[][] map)
    {
        var n = map[0].Length - 1;
        var iskey = new bool[n];
        var isfree = new bool[n];
        for (var i = 0; i < map.Length; ++i)
        {
            var flg = true;
            for (var j = 0; j < n; ++j) if (map[i][j] != 0)
            {
                if (flg)
                {
                    iskey[j] = true;
                }
                else
                {
                    isfree[j] = true;
                }
                flg = false;
            }
            // 解なしチェック
            if (flg && map[i][^1] != 0) return new int[0];
        }
        var ans = new int[n];
        // (この問題のみ)
        // freeがない場合解なし
        // freeのうち最初のみ1に設定し、あとは0に設定
        if (isfree.All(f => !f)) return new int[0];
        for (var i = 0; i < n; ++i) if (isfree[i])
        {
            ans[i] = 1;
            break;
        }
        for (var i = 0; i < map.Length; ++i)
        {
            var pos = -1;
            for (var j = 0; j < n; ++j) if (map[i][j] != 0)
            {
                if (pos < 0) pos = j;
                else
                {
                    ans[pos] = (ans[pos] + ans[j]) % 2;
                }
            }
            if (pos >= 0) ans[pos] = (ans[pos] + map[i][^1]) % 2;
        }
        return ans;
    }
}
0