結果

問題 No.2672 Subset Xor Sum
ユーザー kakel-sankakel-san
提出日時 2024-03-15 21:42:57
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,305 bytes
コンパイル時間 9,222 ms
コンパイル使用メモリ 164,968 KB
実行使用メモリ 186,344 KB
最終ジャッジ日時 2024-09-30 00:37:48
合計ジャッジ時間 17,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,464 KB
testcase_01 AC 56 ms
30,692 KB
testcase_02 AC 54 ms
30,976 KB
testcase_03 AC 55 ms
30,592 KB
testcase_04 AC 59 ms
30,820 KB
testcase_05 AC 59 ms
30,848 KB
testcase_06 AC 57 ms
30,976 KB
testcase_07 AC 58 ms
30,592 KB
testcase_08 AC 58 ms
30,720 KB
testcase_09 AC 58 ms
30,720 KB
testcase_10 AC 57 ms
30,592 KB
testcase_11 AC 56 ms
31,104 KB
testcase_12 AC 55 ms
30,592 KB
testcase_13 AC 57 ms
30,720 KB
testcase_14 AC 59 ms
30,720 KB
testcase_15 AC 59 ms
30,976 KB
testcase_16 AC 57 ms
30,720 KB
testcase_17 AC 57 ms
30,464 KB
testcase_18 AC 56 ms
30,464 KB
testcase_19 AC 56 ms
30,464 KB
testcase_20 AC 55 ms
30,720 KB
testcase_21 AC 59 ms
30,712 KB
testcase_22 AC 59 ms
30,848 KB
testcase_23 AC 57 ms
30,976 KB
testcase_24 AC 58 ms
30,592 KB
testcase_25 AC 56 ms
30,680 KB
testcase_26 AC 57 ms
30,464 KB
testcase_27 AC 58 ms
30,208 KB
testcase_28 AC 57 ms
30,592 KB
testcase_29 AC 56 ms
30,848 KB
testcase_30 AC 56 ms
30,960 KB
testcase_31 AC 125 ms
74,712 KB
testcase_32 AC 87 ms
46,208 KB
testcase_33 AC 83 ms
44,160 KB
testcase_34 AC 111 ms
58,200 KB
testcase_35 AC 130 ms
66,048 KB
testcase_36 AC 119 ms
61,272 KB
testcase_37 AC 127 ms
64,768 KB
testcase_38 AC 88 ms
47,972 KB
testcase_39 AC 135 ms
73,472 KB
testcase_40 AC 72 ms
38,264 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 196 ms
54,656 KB
testcase_47 AC 193 ms
54,656 KB
testcase_48 AC 187 ms
54,656 KB
testcase_49 AC 190 ms
54,656 KB
testcase_50 AC 190 ms
54,656 KB
testcase_51 AC 192 ms
54,912 KB
testcase_52 AC 58 ms
30,976 KB
testcase_53 AC 58 ms
31,104 KB
testcase_54 AC 188 ms
54,756 KB
testcase_55 AC 187 ms
54,912 KB
testcase_56 AC 188 ms
54,528 KB
testcase_57 AC 150 ms
54,492 KB
testcase_58 AC 96 ms
50,176 KB
testcase_59 AC 89 ms
46,208 KB
testcase_60 AC 142 ms
54,528 KB
testcase_61 AC 114 ms
54,272 KB
testcase_62 AC 126 ms
54,272 KB
testcase_63 AC 133 ms
54,272 KB
testcase_64 AC 58 ms
30,948 KB
testcase_65 AC 98 ms
50,304 KB
testcase_66 WA -
testcase_67 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        WriteLine(Xor(n, a) ? "Yes" : "No");
    }
    static bool Xor(int n, int[] a)
    {
        var set = new HashSet<int>(a);
        if (set.Count < n) return true;
        var dp1 = new bool[8192];
        dp1[a[0]] = true;
        var dp2 = new bool[8192];
        var all = a[0];
        for (var i = 1; i < n; ++i)
        {
            var ndp1 = new bool[8192];
            var ndp2 = new bool[8192];
            for (var b = 0; b < dp1.Length; ++b)
            {
                ndp1[b ^ a[i]] |= dp1[b];
                ndp2[b] |= dp1[b];
                ndp2[b ^ a[i]] |= dp2[b];
                ndp2[b] |= dp2[b];
            }
            dp1 = ndp1;
            dp2 = ndp2;
            all ^= a[i];
        }
        return all == 0 && dp2[0];
    }
}
 
0