結果

問題 No.2930 Larger Mex
ユーザー kakel-sankakel-san
提出日時 2024-11-02 08:59:41
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 5,480 bytes
コンパイル時間 8,586 ms
コンパイル使用メモリ 170,076 KB
実行使用メモリ 216,452 KB
最終ジャッジ日時 2024-11-02 09:00:10
合計ジャッジ時間 25,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,716 KB
testcase_01 AC 60 ms
30,976 KB
testcase_02 AC 62 ms
30,720 KB
testcase_03 AC 65 ms
30,976 KB
testcase_04 AC 68 ms
31,064 KB
testcase_05 AC 70 ms
30,976 KB
testcase_06 AC 64 ms
31,232 KB
testcase_07 AC 65 ms
31,104 KB
testcase_08 AC 231 ms
50,432 KB
testcase_09 AC 227 ms
49,536 KB
testcase_10 AC 239 ms
50,816 KB
testcase_11 AC 185 ms
48,000 KB
testcase_12 AC 318 ms
56,708 KB
testcase_13 AC 279 ms
52,224 KB
testcase_14 AC 273 ms
54,992 KB
testcase_15 AC 181 ms
55,312 KB
testcase_16 AC 247 ms
49,536 KB
testcase_17 AC 226 ms
57,296 KB
testcase_18 AC 188 ms
50,048 KB
testcase_19 AC 261 ms
55,080 KB
testcase_20 AC 254 ms
56,960 KB
testcase_21 AC 282 ms
52,992 KB
testcase_22 AC 285 ms
55,288 KB
testcase_23 AC 251 ms
50,524 KB
testcase_24 AC 225 ms
56,644 KB
testcase_25 AC 302 ms
55,276 KB
testcase_26 AC 259 ms
47,360 KB
testcase_27 AC 213 ms
44,928 KB
testcase_28 AC 225 ms
46,720 KB
testcase_29 AC 239 ms
46,168 KB
testcase_30 AC 168 ms
53,520 KB
testcase_31 AC 166 ms
49,152 KB
testcase_32 AC 203 ms
54,336 KB
testcase_33 AC 194 ms
54,712 KB
testcase_34 AC 244 ms
56,076 KB
testcase_35 AC 195 ms
45,824 KB
testcase_36 AC 180 ms
51,712 KB
testcase_37 AC 276 ms
51,712 KB
testcase_38 AC 269 ms
56,200 KB
testcase_39 AC 237 ms
56,796 KB
testcase_40 AC 225 ms
56,712 KB
testcase_41 AC 225 ms
50,908 KB
testcase_42 AC 237 ms
46,208 KB
testcase_43 AC 221 ms
45,568 KB
testcase_44 AC 244 ms
46,336 KB
testcase_45 AC 256 ms
46,208 KB
testcase_46 AC 117 ms
54,880 KB
testcase_47 AC 114 ms
54,480 KB
testcase_48 AC 100 ms
47,360 KB
testcase_49 AC 115 ms
55,484 KB
testcase_50 AC 161 ms
51,216 KB
testcase_51 AC 231 ms
56,668 KB
testcase_52 AC 272 ms
216,452 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 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 c = NList;
        var (n, m) = (c[0], c[1]);
        var a = NList;
        if (m == 0)
        {
            var ans2 = new int[n];
            for (var i = 0; i < n; ++i) ans2[i] = n - i;
            WriteLine(string.Join("\n", ans2));
            return;
        }
        var INF = int.MaxValue / 2;
        var pos = Enumerable.Repeat(INF, m).ToArray();
        var next = new int[n];
        for (var i = n - 1; i >= 0; --i) if (a[i] < m)
        {
            next[i] = pos[a[i]];
            pos[a[i]] = i;
        }
        var seg = new SegmentTree<int>(pos, new SegOp());
        var cum = new int[n + 1];
        for (var i = 0; i < n; ++i)
        {
            var left = seg.Prod(0, m) - i;
            var right = n - i;
            if (left < n) ++cum[left];
            if (left <= right && right <= n) --cum[right];
            if (a[i] < m) seg[a[i]] = next[i];
        }
        var ans = new int[n];
        for (var i = 0; i < n; ++i)
        {
            if (i > 0) cum[i] += cum[i - 1];
            ans[i] = cum[i];
        }
        WriteLine(string.Join("\n", ans));
    }
    struct SegOp : ISegmentTreeOperator<int>
    {
        public int Identity => 0;

        public int Operate(int x, int y)
        {
            return Math.Max(x, y);
        }
    }
    interface ISegmentTreeOperator<T>
    {
        T Identity { get; }
        T Operate(T x, T y);
    }
    class SegmentTree<T>
    {
        int _n;
        int size;
        int log;
        T[] d;
        ISegmentTreeOperator<T> op;
        void Update(int k)
        {
            d[k] = op.Operate(d[2 * k], d[2 * k + 1]);
        }
        public SegmentTree(int n, ISegmentTreeOperator<T> op)
        {
            this.op = op;
            _n = n;
            size = 1;
            while (size < n) size <<= 1;
            log = CountRZero(size);
            d = new T[2 * size];
            for (var i = 0; i < d.Length; ++i) d[i] = op.Identity;
        }
        public SegmentTree(T[] v, ISegmentTreeOperator<T> op)
        {
            this.op = op;
            _n = v.Length;
            size = 1;
            while (size < v.Length) size <<= 1;
            log = CountRZero(size);
            d = new T[2 * size];
            for (var i = 0; i < size; ++i) d[i] = op.Identity;
            for (var i = 0; i < v.Length; ++i) d[size + i] = v[i];
            for (var i = size - 1; i >= 1; --i) Update(i);
        }
        int CountRZero(int n)
        {
            var ans = 0;
            while (n % 2 == 0)
            {
                ++ans;
                n >>= 1;
            }
            return ans;
        }
        public T this[int p]
        {
            get { return d[p + size]; }
            set
            {
                p += size;
                d[p] = value;
                for (var i = 1; i <= log; ++i) Update(p >> i);
            }
        }
        public T Prod(int l, int r)
        {
            var sml = op.Identity;
            var smr = op.Identity;
            l += size;
            r += size;
            while (l < r)
            {
                if ((l & 1) != 0) sml = op.Operate(sml, d[l++]);
                if ((r & 1) != 0) smr = op.Operate(d[--r], smr);
                l >>= 1;
                r >>= 1;
            }
            return op.Operate(sml, smr);
        }
        T AllProd() => d[1];
        int MinLeft(int r, Predicate<T> f)
        {
            if (r == 0) return 0;
            r += size;
            T sm = op.Identity;
            do
            {
                r--;
                while (r > 1 && (r % 2) != 0) r >>= 1;
                if (!f(op.Operate(d[r], sm)))
                {
                    while (r < size)
                    {
                        r = 2 * r + 1;
                        if (f(op.Operate(d[r], sm)))
                        {
                            sm = op.Operate(d[r], sm);
                            r--;
                        }
                    }
                    return r + 1 - size;
                }
                sm = op.Operate(d[r], sm);
            }
            while ((r & -r) != r);
            return 0;
        }
        public int MaxRight(int l, Predicate<T> f)
        {
            if (l == _n) return _n;
            l += size;
            T sm = op.Identity;
            do
            {
                while (l % 2 == 0) l >>= 1;
                if (!f(op.Operate(sm, d[l])))
                {
                    while (l < size)
                    {
                        l = 2 * l;
                        if (f(op.Operate(sm, d[l])))
                        {
                            sm = op.Operate(sm, d[l]);
                            ++l;
                        }
                    }
                    return l - size;
                }
                sm = op.Operate(sm, d[l]);
                ++l;
            } while ((l & -l) != l);
            return _n;
        }
    }
}
0