結果

問題 No.2616 中央番目の中央値
ユーザー heno239heno239
提出日時 2024-02-02 18:31:58
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 3,146 bytes
コンパイル時間 8,048 ms
コンパイル使用メモリ 167,924 KB
実行使用メモリ 220,604 KB
最終ジャッジ日時 2024-09-28 10:39:00
合計ジャッジ時間 14,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,208 KB
testcase_01 AC 54 ms
29,952 KB
testcase_02 AC 56 ms
29,952 KB
testcase_03 AC 56 ms
29,952 KB
testcase_04 AC 55 ms
30,208 KB
testcase_05 AC 55 ms
30,080 KB
testcase_06 AC 56 ms
30,080 KB
testcase_07 AC 55 ms
29,932 KB
testcase_08 AC 54 ms
30,080 KB
testcase_09 AC 55 ms
29,952 KB
testcase_10 AC 56 ms
30,052 KB
testcase_11 AC 56 ms
30,080 KB
testcase_12 AC 56 ms
30,464 KB
testcase_13 AC 60 ms
30,592 KB
testcase_14 AC 59 ms
30,848 KB
testcase_15 AC 74 ms
32,364 KB
testcase_16 AC 82 ms
33,536 KB
testcase_17 AC 88 ms
34,688 KB
testcase_18 AC 104 ms
37,348 KB
testcase_19 AC 136 ms
42,880 KB
testcase_20 AC 136 ms
42,880 KB
testcase_21 AC 215 ms
55,948 KB
testcase_22 AC 285 ms
65,396 KB
testcase_23 AC 288 ms
65,416 KB
testcase_24 AC 257 ms
65,552 KB
testcase_25 AC 265 ms
65,196 KB
testcase_26 AC 290 ms
65,676 KB
testcase_27 AC 289 ms
65,412 KB
testcase_28 AC 291 ms
65,544 KB
testcase_29 AC 291 ms
65,412 KB
testcase_30 AC 287 ms
65,540 KB
testcase_31 AC 292 ms
65,532 KB
testcase_32 AC 290 ms
65,416 KB
testcase_33 AC 288 ms
65,408 KB
testcase_34 AC 288 ms
65,412 KB
testcase_35 AC 290 ms
65,412 KB
testcase_36 AC 284 ms
220,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.cs(25,19): warning CS8981: 型名 'perm' には、小文字の ASCII 文字のみが含まれています。このような名前は、プログラミング言語用に予約されている可能性があります。 [/home/judge/data/code/main.csproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// See https://aka.ms/new-console-template for more information
using System.Collections;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

internal class Program
{
    private const long mod = 998244353;

    public static long mod_pow(long x, long n, long m = mod)
    {
        x %= m;
        if (x < 0) x += m;
        long res = 1;
        while (n > 0)
        {
            if ((n & 1) != 0) res = res * x % m;
            x = x * x % m;
            n >>= 1;
        }

        return res;
    }
    public struct perm
    {
        public List<int> fact;
        public List<int> factinv;

        public perm(int n)
        {
            fact = new List<int>(n);
            factinv = new List<int>(n);
            fact.Add(1);
            for (int i = 1; i < n; i++)
            {
                long val = fact.Last();
                val = val * i % mod;
                fact.Add((int)val);
            }

            long las = fact.Last();
            long cur = mod_pow(las, mod - 2);
            factinv.Add((int)cur);
            for (int i = n - 1; i > 0; i--)
            {
                long val = factinv.Last();
                val = val * i % mod;
                factinv.Add((int)val);
            }

            factinv.Reverse();
        }

        public int comb(int a, int b)
        {
            if (a < 0 || b < 0 || a < b) return 0;
            long res = fact[a];
            res = res * factinv[b] % mod;
            res = res * factinv[a - b] % mod;
            return (int)res;
        }
        
    }
    public struct BIT
    {
        public int n;
        public List<int> node;

        public BIT(int n_)
        {
            n = n_;
            node = new List<int>(n);
            for(int i=0;i<n;i++)node.Add(0);
        }

        public void add(int a, int w)
        {
            for (int i = a; i < n; i |= i + 1) node[i] += w;
        }

        public int sum(int a)
        {
            int res = 0;
            for (int i = a - 1; i >= 0; i = (i & (i + 1)) - 1) res += node[i];
            return res;
        }

        public int sum(int a, int b)
        {
            return sum(b) - sum(a);
        }
    }
    public static void Main(string[] args)
    {
        int n = int.Parse(Console.ReadLine());
        perm pm = new perm(n + 5);
        var p = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        for (int i = 0; i < n; i++) p[i]--;
        BIT bt = new BIT(n + 5);
        long ans = 0;
        for (int i = 0; i < n; i++)
        {
            int cl0 = bt.sum(p[i]);
            int cl1 = i - cl0;
            int cr0 = p[i] - cl0;
            int cr1 = n - i - 1 - cr0;
            long val = pm.comb(cl0 + cr1, cl0);
            val = val * pm.comb(cr0 + cl1, cr0) % mod;
            ans += val;
            if (ans >= mod) ans -= mod;
            
            bt.add(p[i],1);
        }
        Console.WriteLine(ans);
    }

    public static List<int> mkar(int n, int val)
    {
        List<int> res = new List<int>(n);
        for(int i=0;i<n;i++)res.Add(val);
        return res;
    }
}
0