結果

問題 No.2672 Subset Xor Sum
ユーザー kakel-sankakel-san
提出日時 2024-03-15 21:50:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 12,607 ms
コンパイル使用メモリ 167,428 KB
実行使用メモリ 186,560 KB
最終ジャッジ日時 2024-09-30 04:19:05
合計ジャッジ時間 19,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
31,096 KB
testcase_01 AC 50 ms
31,096 KB
testcase_02 AC 49 ms
30,848 KB
testcase_03 AC 50 ms
30,976 KB
testcase_04 AC 49 ms
31,212 KB
testcase_05 AC 50 ms
30,848 KB
testcase_06 AC 49 ms
30,848 KB
testcase_07 AC 50 ms
30,976 KB
testcase_08 AC 50 ms
31,232 KB
testcase_09 AC 50 ms
30,976 KB
testcase_10 AC 49 ms
31,104 KB
testcase_11 AC 50 ms
30,968 KB
testcase_12 AC 49 ms
31,088 KB
testcase_13 AC 49 ms
31,088 KB
testcase_14 AC 51 ms
31,360 KB
testcase_15 AC 50 ms
30,968 KB
testcase_16 AC 50 ms
30,976 KB
testcase_17 AC 50 ms
31,068 KB
testcase_18 AC 50 ms
30,976 KB
testcase_19 AC 50 ms
31,068 KB
testcase_20 AC 49 ms
31,212 KB
testcase_21 AC 49 ms
31,220 KB
testcase_22 AC 49 ms
31,220 KB
testcase_23 AC 50 ms
31,104 KB
testcase_24 AC 49 ms
31,088 KB
testcase_25 AC 50 ms
31,212 KB
testcase_26 AC 52 ms
30,452 KB
testcase_27 AC 51 ms
30,680 KB
testcase_28 AC 51 ms
31,220 KB
testcase_29 AC 51 ms
30,976 KB
testcase_30 AC 50 ms
31,104 KB
testcase_31 AC 121 ms
71,424 KB
testcase_32 AC 82 ms
46,464 KB
testcase_33 AC 79 ms
44,272 KB
testcase_34 AC 109 ms
58,368 KB
testcase_35 AC 131 ms
66,176 KB
testcase_36 AC 117 ms
61,824 KB
testcase_37 AC 129 ms
65,024 KB
testcase_38 AC 89 ms
47,872 KB
testcase_39 AC 128 ms
73,472 KB
testcase_40 AC 69 ms
38,144 KB
testcase_41 AC 95 ms
55,552 KB
testcase_42 AC 117 ms
65,152 KB
testcase_43 AC 99 ms
59,520 KB
testcase_44 AC 122 ms
74,240 KB
testcase_45 AC 94 ms
58,240 KB
testcase_46 AC 54 ms
30,456 KB
testcase_47 AC 196 ms
54,656 KB
testcase_48 AC 52 ms
30,708 KB
testcase_49 AC 53 ms
30,336 KB
testcase_50 AC 54 ms
30,964 KB
testcase_51 AC 204 ms
54,608 KB
testcase_52 AC 55 ms
31,104 KB
testcase_53 AC 54 ms
30,976 KB
testcase_54 AC 207 ms
54,896 KB
testcase_55 AC 207 ms
54,656 KB
testcase_56 AC 53 ms
30,840 KB
testcase_57 AC 161 ms
54,656 KB
testcase_58 AC 101 ms
50,048 KB
testcase_59 AC 52 ms
30,464 KB
testcase_60 AC 52 ms
30,428 KB
testcase_61 AC 50 ms
30,080 KB
testcase_62 AC 128 ms
54,400 KB
testcase_63 AC 142 ms
54,528 KB
testcase_64 AC 56 ms
31,104 KB
testcase_65 AC 100 ms
50,304 KB
testcase_66 AC 55 ms
29,952 KB
testcase_67 AC 51 ms
186,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 all = a.Aggregate((x, ai) => x ^ ai);
        if (all != 0) return false;
        if (n == 2 && a[0] != 0) return false;
        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];
        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;
        }
        return dp2[0];
    }
}
 
0