結果

問題 No.2672 Subset Xor Sum
ユーザー kakel-sankakel-san
提出日時 2024-03-15 21:44:31
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,377 bytes
コンパイル時間 7,932 ms
コンパイル使用メモリ 167,492 KB
実行使用メモリ 185,592 KB
最終ジャッジ日時 2024-09-30 00:39:48
合計ジャッジ時間 15,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,848 KB
testcase_01 AC 58 ms
30,964 KB
testcase_02 AC 60 ms
30,848 KB
testcase_03 AC 57 ms
31,232 KB
testcase_04 AC 54 ms
31,076 KB
testcase_05 AC 51 ms
30,848 KB
testcase_06 AC 50 ms
30,976 KB
testcase_07 AC 52 ms
30,976 KB
testcase_08 AC 51 ms
30,976 KB
testcase_09 AC 50 ms
30,976 KB
testcase_10 AC 50 ms
30,976 KB
testcase_11 AC 49 ms
30,848 KB
testcase_12 AC 49 ms
30,848 KB
testcase_13 AC 50 ms
31,232 KB
testcase_14 AC 50 ms
31,004 KB
testcase_15 AC 51 ms
31,104 KB
testcase_16 AC 52 ms
30,976 KB
testcase_17 AC 51 ms
30,976 KB
testcase_18 AC 51 ms
30,976 KB
testcase_19 AC 50 ms
30,848 KB
testcase_20 AC 50 ms
31,104 KB
testcase_21 AC 51 ms
30,976 KB
testcase_22 AC 53 ms
30,848 KB
testcase_23 AC 52 ms
30,848 KB
testcase_24 AC 51 ms
31,104 KB
testcase_25 AC 49 ms
30,964 KB
testcase_26 AC 55 ms
30,552 KB
testcase_27 AC 56 ms
30,432 KB
testcase_28 AC 58 ms
30,976 KB
testcase_29 AC 60 ms
31,232 KB
testcase_30 AC 61 ms
30,976 KB
testcase_31 AC 129 ms
75,368 KB
testcase_32 AC 89 ms
48,044 KB
testcase_33 AC 85 ms
44,160 KB
testcase_34 AC 112 ms
59,068 KB
testcase_35 AC 133 ms
68,356 KB
testcase_36 AC 122 ms
63,508 KB
testcase_37 AC 132 ms
67,048 KB
testcase_38 AC 95 ms
48,256 KB
testcase_39 AC 137 ms
79,272 KB
testcase_40 AC 74 ms
38,272 KB
testcase_41 AC 99 ms
55,956 KB
testcase_42 AC 125 ms
64,960 KB
testcase_43 AC 106 ms
59,092 KB
testcase_44 AC 129 ms
77,136 KB
testcase_45 AC 103 ms
58,368 KB
testcase_46 AC 59 ms
30,828 KB
testcase_47 AC 198 ms
54,772 KB
testcase_48 AC 58 ms
30,848 KB
testcase_49 AC 59 ms
30,464 KB
testcase_50 AC 58 ms
30,592 KB
testcase_51 AC 202 ms
55,040 KB
testcase_52 AC 59 ms
30,720 KB
testcase_53 AC 59 ms
30,720 KB
testcase_54 AC 204 ms
54,900 KB
testcase_55 AC 201 ms
54,784 KB
testcase_56 AC 57 ms
30,848 KB
testcase_57 AC 161 ms
54,768 KB
testcase_58 AC 102 ms
50,432 KB
testcase_59 AC 56 ms
30,576 KB
testcase_60 AC 56 ms
30,424 KB
testcase_61 AC 57 ms
30,336 KB
testcase_62 AC 129 ms
54,784 KB
testcase_63 AC 138 ms
54,272 KB
testcase_64 AC 59 ms
30,592 KB
testcase_65 AC 102 ms
50,688 KB
testcase_66 WA -
testcase_67 AC 56 ms
185,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (121 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;
        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