結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー kakel-sankakel-san
提出日時 2023-10-02 21:03:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,161 ms / 3,000 ms
コード長 2,961 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 109,440 KB
実行使用メモリ 113,364 KB
最終ジャッジ日時 2024-07-26 13:55:33
合計ジャッジ時間 29,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,584 KB
testcase_01 AC 34 ms
19,584 KB
testcase_02 AC 87 ms
39,024 KB
testcase_03 AC 506 ms
64,484 KB
testcase_04 AC 510 ms
59,376 KB
testcase_05 AC 395 ms
50,548 KB
testcase_06 AC 648 ms
73,700 KB
testcase_07 AC 707 ms
75,496 KB
testcase_08 AC 551 ms
63,968 KB
testcase_09 AC 672 ms
78,288 KB
testcase_10 AC 575 ms
63,472 KB
testcase_11 AC 343 ms
47,352 KB
testcase_12 AC 613 ms
65,912 KB
testcase_13 AC 404 ms
49,536 KB
testcase_14 AC 435 ms
54,272 KB
testcase_15 AC 398 ms
47,872 KB
testcase_16 AC 546 ms
63,576 KB
testcase_17 AC 992 ms
90,216 KB
testcase_18 AC 862 ms
85,484 KB
testcase_19 AC 959 ms
90,964 KB
testcase_20 AC 249 ms
49,252 KB
testcase_21 AC 314 ms
56,288 KB
testcase_22 AC 460 ms
52,608 KB
testcase_23 AC 295 ms
49,648 KB
testcase_24 AC 349 ms
46,848 KB
testcase_25 AC 847 ms
76,272 KB
testcase_26 AC 899 ms
84,584 KB
testcase_27 AC 179 ms
32,128 KB
testcase_28 AC 532 ms
70,372 KB
testcase_29 AC 1,003 ms
90,688 KB
testcase_30 AC 862 ms
86,288 KB
testcase_31 AC 519 ms
69,848 KB
testcase_32 AC 1,161 ms
104,816 KB
testcase_33 AC 1,118 ms
113,364 KB
testcase_34 AC 1,119 ms
111,188 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 long NN => long.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k, q) = (c[0], (int)c[1], c[2]);
        var walls = NArr(k);
        var query = NArr(q);
        var wlist = new List<(int id, long height)>[n];
        var qlist = new List<(int id, long height)>[n];
        for (var i = 0; i < n; ++i)
        {
            wlist[i] = new List<(int id, long height)>();
            qlist[i] = new List<(int id, long height)>();
        }
        for (var i = 0; i < k; ++i)
        {
            wlist[walls[i][0] - 1].Add((i, walls[i][3]));
            if (walls[i][1] < n) wlist[walls[i][1]].Add((i, -walls[i][3]));
        }
        for (var i = 0; i < q; ++i)
        {
            qlist[query[i][0] - 1].Add((i, query[i][1]));
        }
        var ft = new FenwickTree(k + 1);
        var ans = new long[q];
        for (var i = 0; i < n; ++i)
        {
            foreach (var w in wlist[i])
            {
                ft.Add(w.id, w.height);
            }
            foreach (var qi in qlist[i])
            {
                if (ft.Sum(k) < qi.height) ans[qi.id] = -1;
                else ans[qi.id] = walls[ft.LowerBound(qi.height)][2];
            }
        }
        WriteLine(string.Join("\n", 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