結果

問題 No.875 Range Mindex Query
ユーザー bluemeganebluemegane
提出日時 2021-04-30 07:04:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 635 ms / 2,000 ms
コード長 2,208 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 110,272 KB
実行使用メモリ 40,056 KB
最終ジャッジ日時 2024-07-18 06:20:02
合計ジャッジ時間 6,139 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,264 KB
testcase_01 AC 31 ms
27,324 KB
testcase_02 AC 31 ms
25,800 KB
testcase_03 AC 26 ms
26,964 KB
testcase_04 AC 28 ms
27,424 KB
testcase_05 AC 30 ms
25,816 KB
testcase_06 AC 31 ms
25,560 KB
testcase_07 AC 31 ms
25,396 KB
testcase_08 AC 30 ms
25,528 KB
testcase_09 AC 30 ms
27,432 KB
testcase_10 AC 31 ms
25,272 KB
testcase_11 AC 429 ms
38,716 KB
testcase_12 AC 366 ms
36,224 KB
testcase_13 AC 302 ms
37,872 KB
testcase_14 AC 299 ms
39,368 KB
testcase_15 AC 398 ms
37,720 KB
testcase_16 AC 635 ms
37,968 KB
testcase_17 AC 609 ms
39,904 KB
testcase_18 AC 586 ms
40,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using static System.Math;
using System;

public class rmq
{
    private readonly int INTMAX = int.MaxValue;
    private int[] dat;
    private static int size;

    public rmq(int n)
    {
        size = 1;
        while (size < n) size *= 2;
        dat = Enumerable.Repeat(INTMAX, 2 * size - 1).ToArray();
    }

    public void update(int i, int a)
    {
        i += size - 1;
        dat[i] = a;
        while (i > 0)
        {
            i = (i - 1) / 2;
            dat[i] = Min(dat[i * 2 + 1], dat[i * 2 + 2]);
        }
    }

    private int query(int a, int b, int k, int L, int r)
    {
        if (r <= a || b <= L) return INTMAX;
        if (a <= L && r <= b) return dat[k];
        else
        {
            int vL = query(a, b, k * 2 + 1, L, (L + r) / 2);
            int vr = query(a, b, k * 2 + 2, (L + r) / 2, r);
            return Min(vL, vr);
        }
    }
    public int query(int a, int b) => query(a, b, 0, 0, size);
}

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var q = int.Parse(line[1]);
        getAns(n, q);
    }
    static void getAns(int n, int q)
    {
        var rmq = new rmq(n + 10);
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        var reva = new int[n + 1];
        for (int i = 0; i < n; i++)
        {
            rmq.update(i, a[i]);
            reva[a[i]] = i;
        }
        for (int i = 0; i < q; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var L = int.Parse(line[1]) - 1;
            var r = int.Parse(line[2]) - 1;
            if (line[0] == "1")
            {
                rmq.update(L, a[r]);
                rmq.update(r, a[L]);
                var temp= a[L];
                a[L] = a[r];
                a[r] = temp;
                 temp = reva[a[L]];
                reva[a[L]] = reva[a[r]];
                reva[a[r]] = temp;
            }
            else
            {
                var w2 = rmq.query(L, r + 1);
                Console.WriteLine(reva[w2] + 1);
            }
        }
    }
}
0