結果

問題 No.1300 Sum of Inversions
ユーザー kakel-sankakel-san
提出日時 2024-09-24 23:47:11
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,424 bytes
コンパイル時間 16,553 ms
コンパイル使用メモリ 165,960 KB
実行使用メモリ 235,756 KB
最終ジャッジ日時 2024-09-24 23:47:53
合計ジャッジ時間 32,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,336 KB
testcase_01 AC 64 ms
30,436 KB
testcase_02 AC 60 ms
30,336 KB
testcase_03 AC 460 ms
67,600 KB
testcase_04 AC 420 ms
64,908 KB
testcase_05 AC 378 ms
59,008 KB
testcase_06 AC 468 ms
73,764 KB
testcase_07 AC 464 ms
72,576 KB
testcase_08 AC 528 ms
75,520 KB
testcase_09 AC 544 ms
75,904 KB
testcase_10 AC 324 ms
54,272 KB
testcase_11 AC 297 ms
54,400 KB
testcase_12 AC 433 ms
64,996 KB
testcase_13 AC 457 ms
64,384 KB
testcase_14 AC 529 ms
78,572 KB
testcase_15 AC 518 ms
75,392 KB
testcase_16 AC 462 ms
71,916 KB
testcase_17 AC 270 ms
53,888 KB
testcase_18 AC 319 ms
57,472 KB
testcase_19 AC 371 ms
63,084 KB
testcase_20 AC 397 ms
62,208 KB
testcase_21 AC 419 ms
62,212 KB
testcase_22 AC 370 ms
59,008 KB
testcase_23 AC 468 ms
73,964 KB
testcase_24 AC 350 ms
59,596 KB
testcase_25 AC 293 ms
57,216 KB
testcase_26 AC 313 ms
56,832 KB
testcase_27 AC 318 ms
58,552 KB
testcase_28 AC 538 ms
76,524 KB
testcase_29 AC 394 ms
62,080 KB
testcase_30 AC 513 ms
75,520 KB
testcase_31 AC 342 ms
59,264 KB
testcase_32 AC 383 ms
59,776 KB
testcase_33 AC 240 ms
52,488 KB
testcase_34 AC 233 ms
68,096 KB
testcase_35 AC 335 ms
75,648 KB
testcase_36 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (136 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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).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;
        var set = new HashSet<int>(a);
        var list = new List<int>(set);
        list.Sort();
        var dic = new Dictionary<int, int>();
        for (var i = 0; i < list.Count; ++i) dic[list[i]] = i;
        var mod = 998_244_353;

        var lst = new FenwickTree(list.Count);
        var lct = new FenwickTree(list.Count);
        var ls = new long[n];
        var lc = new long[n];
        for (var i = 0; i < n; ++i)
        {
            ls[i] = (lst.Sum(list.Count - 1) - lst.Sum(dic[a[i]])) % mod;
            lc[i] = lct.Sum(list.Count - 1) - lct.Sum(dic[a[i]]);
            lst.Add(dic[a[i]], a[i]);
            lct.Add(dic[a[i]], 1);
        }
        var rst = new FenwickTree(n);
        var rct = new FenwickTree(n);
        var rs = new long[n];
        var rc = new long[n];
        for (var i = n - 1; i >= 0; --i)
        {
            if (dic[a[i]] > 0)
            {
                rs[i] = rst.Sum(dic[a[i]] - 1);
                rc[i] = rct.Sum(dic[a[i]] - 1);
            }
            rst.Add(dic[a[i]], a[i]);
            rct.Add(dic[a[i]], 1);
        }
        var ans = 0L;
        for (var i = 0; i < n; ++i)
        {
            ans = (ans + lc[i] * rc[i] % mod * a[i] + lc[i] * rs[i] % mod + ls[i] * rc[i] % mod) % mod;
        }
        WriteLine(ans);
    }
    class FenwickTree
    {
        int size;
        long[] tree;
        public FenwickTree(int size)
        {
            this.size = size;
            tree = new long[size + 2];
        }
        public void Add(int index, int 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;
        }
        public long Get(int index)
        {
            if (index == 0) return Sum(0);
            return Sum(index) - Sum(index - 1);
        }
        /// <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;
        }
    }
}
0