結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー kakel-sankakel-san
提出日時 2024-09-28 20:41:32
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 2,397 bytes
コンパイル時間 9,627 ms
コンパイル使用メモリ 171,520 KB
実行使用メモリ 188,208 KB
最終ジャッジ日時 2024-09-28 20:41:46
合計ジャッジ時間 11,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
30,328 KB
testcase_01 AC 52 ms
30,964 KB
testcase_02 AC 53 ms
30,848 KB
testcase_03 AC 55 ms
30,848 KB
testcase_04 AC 51 ms
30,080 KB
testcase_05 AC 54 ms
30,208 KB
testcase_06 AC 61 ms
30,976 KB
testcase_07 AC 53 ms
30,208 KB
testcase_08 AC 50 ms
30,316 KB
testcase_09 AC 51 ms
30,848 KB
testcase_10 AC 49 ms
30,968 KB
testcase_11 AC 50 ms
30,960 KB
testcase_12 AC 51 ms
30,336 KB
testcase_13 AC 54 ms
32,248 KB
testcase_14 AC 59 ms
32,512 KB
testcase_15 AC 57 ms
32,384 KB
testcase_16 AC 62 ms
32,640 KB
testcase_17 AC 64 ms
34,176 KB
testcase_18 AC 56 ms
31,988 KB
testcase_19 AC 58 ms
31,872 KB
testcase_20 AC 55 ms
31,488 KB
testcase_21 AC 58 ms
32,116 KB
testcase_22 AC 58 ms
31,600 KB
testcase_23 AC 65 ms
32,000 KB
testcase_24 AC 54 ms
31,232 KB
testcase_25 AC 57 ms
31,872 KB
testcase_26 AC 53 ms
30,848 KB
testcase_27 AC 58 ms
32,384 KB
testcase_28 AC 60 ms
32,512 KB
testcase_29 AC 59 ms
32,764 KB
testcase_30 AC 61 ms
32,640 KB
testcase_31 AC 58 ms
32,640 KB
testcase_32 AC 58 ms
32,640 KB
testcase_33 AC 53 ms
32,640 KB
testcase_34 AC 56 ms
32,896 KB
testcase_35 AC 54 ms
32,512 KB
testcase_36 AC 54 ms
32,000 KB
testcase_37 AC 54 ms
188,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 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, k) = (c[0], c[1]);
        var s = ReadLine();
        var ft = new FenwickTree(n + 1);
        var ans = new List<int>();
        for (var i = n - 1; i > 0; --i)
        {
            if (s[i - 1] == 'o')
            {
                var count = ft.Sum(Math.Min(n, i + k));
                if (count == 0)
                {
                    ft.Add(i, 1);
                    if (i <= k) ans.Add(i);
                }
            }
        }
        ans.Reverse();
        if (ans.Count == 0) WriteLine(0);
        else WriteLine(string.Join(" ", 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