結果

問題 No.1825 Except One
ユーザー kakel-sankakel-san
提出日時 2023-12-18 23:21:56
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 2,206 ms / 3,000 ms
コード長 2,791 bytes
コンパイル時間 9,767 ms
コンパイル使用メモリ 168,480 KB
実行使用メモリ 410,012 KB
最終ジャッジ日時 2024-09-27 08:30:35
合計ジャッジ時間 24,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
30,720 KB
testcase_01 AC 64 ms
30,848 KB
testcase_02 AC 62 ms
30,720 KB
testcase_03 AC 1,157 ms
140,700 KB
testcase_04 AC 385 ms
76,288 KB
testcase_05 AC 147 ms
49,280 KB
testcase_06 AC 76 ms
34,176 KB
testcase_07 AC 1,142 ms
135,836 KB
testcase_08 AC 1,177 ms
139,160 KB
testcase_09 AC 76 ms
34,048 KB
testcase_10 AC 772 ms
110,748 KB
testcase_11 AC 184 ms
53,376 KB
testcase_12 AC 486 ms
84,964 KB
testcase_13 AC 272 ms
64,000 KB
testcase_14 AC 66 ms
31,336 KB
testcase_15 AC 69 ms
32,640 KB
testcase_16 AC 70 ms
33,024 KB
testcase_17 AC 69 ms
31,488 KB
testcase_18 AC 64 ms
30,696 KB
testcase_19 AC 69 ms
31,976 KB
testcase_20 AC 68 ms
31,488 KB
testcase_21 AC 68 ms
31,744 KB
testcase_22 AC 70 ms
31,616 KB
testcase_23 AC 69 ms
32,000 KB
testcase_24 AC 171 ms
50,816 KB
testcase_25 AC 95 ms
36,352 KB
testcase_26 AC 69 ms
31,976 KB
testcase_27 AC 382 ms
69,052 KB
testcase_28 AC 1,817 ms
195,740 KB
testcase_29 AC 89 ms
36,864 KB
testcase_30 AC 78 ms
34,176 KB
testcase_31 AC 143 ms
48,000 KB
testcase_32 AC 1,379 ms
154,008 KB
testcase_33 AC 89 ms
36,608 KB
testcase_34 AC 2,206 ms
410,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (103 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        WriteLine(Except(n, a));
    }
    static long Except(int n, int[] _a)
    {
        var a = _a.ToArray();
        Array.Sort(a);
        var sum = a.Sum();
        var max = a[^1];
        var dp = new FenwickTree[n + 1][];
        for (var i = 0; i < dp.Length; ++i)
        {
            dp[i] = new FenwickTree[sum + 1];
            for (var j = 0; j < dp[i].Length; ++j) dp[i][j] = new FenwickTree(max + 1);
        }
        dp[0][0].Add(0, 1);
        for (var u = 0; u < n; ++u)
        {
            for (var i = u; i >= 0; --i) for (var j = sum; j >= 0; --j)
            {
                if (j + a[u] <= sum) dp[i + 1][j + a[u]].Add(a[u], dp[i][j].Sum(a[u]));
            }
        }
        var ans = 0L;
        for (var i = 2; i < dp.Length; ++i) for (var j = 0; j < dp[i].Length; ++j) for (var k = 0; k <= max; ++k)
        {
            if (j % (i - 1) == 0 && k <= j / (i - 1)) ans += dp[i][j].Get(k);
        }
        return ans;
    }
    class FenwickTree
    {
        int size;
        long[] tree;
        public FenwickTree(int size)
        {
            this.size = size;
            tree = new long[size + 2];
        }
        public void Add(int index, long value)
        {
            ++index;
            for (var x = index; x <= size; x += (x & -x)) tree[x] += value;
        }
        /// <summary>先頭からindexまでの和(include index)</summary>
        public long Sum(int index)
        {
            if (index < 0) return 0;
            ++index;
            var sum = 0L;
            for (var x = index; x > 0; x -= (x & -x)) sum += tree[x];
            return sum;
        }
        /// <summary>Sum(x) >= value となる最小のxを求める</summary>
        // 各要素は非負であること
        public int LowerBound(long value)
        {
            if (value < 0) return -1;
            var x = 0;
            var b = 1;
            while (b * 2 <= size) b <<= 1;
            for (var k = b; k > 0; k >>= 1)
            {
                if (x + k <= size && tree[x + k] < value)
                {
                    value -= tree[x + k];
                    x += k;
                }
            }
            return x;
        }
        public long Get(int index)
        {
            return index == 0 ? Sum(0) : (Sum(index) - Sum(index - 1));
        }
    }
}
0