結果

問題 No.1975 Zigzag Sequence
ユーザー kakel-sankakel-san
提出日時 2023-10-03 22:14:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 2,983 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 107,904 KB
実行使用メモリ 44,928 KB
最終ジャッジ日時 2024-07-26 14:13:45
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
20,224 KB
testcase_01 AC 36 ms
20,480 KB
testcase_02 AC 35 ms
20,224 KB
testcase_03 AC 53 ms
22,444 KB
testcase_04 AC 47 ms
21,760 KB
testcase_05 AC 142 ms
35,072 KB
testcase_06 AC 117 ms
31,616 KB
testcase_07 AC 55 ms
22,528 KB
testcase_08 AC 109 ms
30,464 KB
testcase_09 AC 151 ms
36,352 KB
testcase_10 AC 113 ms
31,488 KB
testcase_11 AC 124 ms
33,152 KB
testcase_12 AC 61 ms
23,296 KB
testcase_13 AC 35 ms
20,224 KB
testcase_14 AC 35 ms
20,480 KB
testcase_15 AC 35 ms
20,608 KB
testcase_16 AC 35 ms
20,352 KB
testcase_17 AC 36 ms
20,352 KB
testcase_18 AC 122 ms
34,688 KB
testcase_19 AC 122 ms
34,816 KB
testcase_20 AC 139 ms
35,968 KB
testcase_21 AC 140 ms
35,840 KB
testcase_22 AC 199 ms
44,928 KB
testcase_23 AC 196 ms
44,800 KB
testcase_24 AC 200 ms
44,800 KB
testcase_25 AC 201 ms
44,672 KB
testcase_26 AC 149 ms
35,456 KB
testcase_27 AC 178 ms
39,296 KB
testcase_28 AC 197 ms
44,800 KB
testcase_29 AC 195 ms
44,928 KB
testcase_30 AC 197 ms
44,928 KB
testcase_31 AC 199 ms
44,800 KB
testcase_32 AC 125 ms
34,816 KB
testcase_33 AC 123 ms
34,688 KB
testcase_34 AC 143 ms
35,840 KB
testcase_35 AC 143 ms
35,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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(Zig(n, a));
    }
    static long Zig(int n, int[] a)
    {
        var list = new List<int>(new HashSet<int>(a));
        list.Add(0);
        list.Sort();
        var dic = new Dictionary<int, int>();
        for (var i = 0; i < list.Count; ++i) dic[list[i]] = i;
        var mod = 1_000_000_007;
        var two = new long[n];
        two[0] = 1;
        for (var i = 1; i < two.Length; ++i) two[i] = two[i - 1] * 2 % mod;
        var ld = new long[n];
        var lu = new long[n];
        var ft = new FenwickTree(list.Count);
        for (var i = 0; i < n; ++i)
        {
            ld[i] = (ft.Sum(list.Count - 1) % mod + mod - ft.Sum(dic[a[i]]) % mod) % mod;
            lu[i] = ft.Sum(dic[a[i]] - 1) % mod;
            ft.Add(dic[a[i]], two[i]);
        }
        ft = new FenwickTree(list.Count);
        var rd = new long[n];
        var ru = new long[n];
        for (var i = n - 1; i >= 0; --i)
        {
            rd[i] = (ft.Sum(list.Count - 1) % mod + mod - ft.Sum(dic[a[i]]) % mod) % mod;
            ru[i] = ft.Sum(dic[a[i]] - 1) % mod;
            ft.Add(dic[a[i]], two[n - i - 1]);
        }
        var ans = 0L;
        for (var i = 0; i < n; ++i) ans = (ans + ld[i] * rd[i] % mod + lu[i] * ru[i] % mod) % mod;
        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;
        }
    }
}
0