結果

問題 No.878 Range High-Element Query
ユーザー neterukunneterukun
提出日時 2019-09-06 23:25:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 119,392 KB
最終ジャッジ日時 2024-06-24 21:22:44
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,228 KB
testcase_01 AC 77 ms
73,684 KB
testcase_02 AC 76 ms
70,924 KB
testcase_03 AC 54 ms
62,968 KB
testcase_04 AC 70 ms
69,816 KB
testcase_05 AC 76 ms
72,328 KB
testcase_06 AC 53 ms
62,236 KB
testcase_07 AC 52 ms
62,004 KB
testcase_08 AC 77 ms
72,716 KB
testcase_09 AC 74 ms
71,940 KB
testcase_10 AC 67 ms
68,860 KB
testcase_11 AC 578 ms
109,960 KB
testcase_12 AC 391 ms
114,224 KB
testcase_13 AC 474 ms
102,112 KB
testcase_14 AC 347 ms
98,592 KB
testcase_15 AC 399 ms
110,012 KB
testcase_16 AC 553 ms
118,880 KB
testcase_17 AC 593 ms
119,392 KB
testcase_18 AC 575 ms
119,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SparseTable():
    def __init__(self, array, n):
        '''テーブルを構築する'''
        self.row_size = n.bit_length()

        # log_tableを構築する
        # log_table = [0, 0, 1, 1, 2, 2, 2, 2, ...]
        self.log_table = [0] * (n + 1)
        for i in range(2, n + 1):
            self.log_table[i] = self.log_table[i//2] + 1

        # sparse_tableを構築する
        self.sparse_table = [[0] * n for _ in range(self.row_size)]
        for i in range(n):
            self.sparse_table[0][i] = array[i]
        for row in range(1, self.row_size):
            for i in range(n - (1 << row) + 1):
               self.sparse_table[row][i] = self._merge(self.sparse_table[row - 1][i], \
                                                       self.sparse_table[row - 1][i + (1 << row - 1)])

    def _merge(self, num1, num2):
        '''クエリの内容'''
        return max(num1, num2)

    def query(self, l, r):
        '''区間[l, r)に対するクエリに答える'''
        if r == l:
            return None
        row = self.log_table[r - l]
        return self._merge(self.sparse_table[row][l], self.sparse_table[row][r - (1 << row)])



n, q = map(int, input().split())
a = list(map(int, input().split()))
sp = SparseTable(a, n)

ind_memo = {}
for i in range(n):
    ind_memo[a[i]] = i
    

for _ in range(q):
    _, l, r = map(int, input().split())
    ans = 0
    while True:
        if l-1 == r:
            break
        max_ind = ind_memo[sp.query(l - 1, r)]
        ans += 1
        r = max_ind
    print(ans)
    
0