結果

問題 No.875 Range Mindex Query
ユーザー mlihua09mlihua09
提出日時 2020-08-31 17:28:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 1,643 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-11-16 09:00:06
合計ジャッジ時間 6,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 68 ms
66,944 KB
testcase_02 AC 78 ms
70,912 KB
testcase_03 AC 50 ms
60,160 KB
testcase_04 AC 65 ms
64,128 KB
testcase_05 AC 57 ms
62,720 KB
testcase_06 AC 67 ms
66,176 KB
testcase_07 AC 78 ms
68,864 KB
testcase_08 AC 61 ms
64,640 KB
testcase_09 AC 63 ms
64,000 KB
testcase_10 AC 78 ms
70,528 KB
testcase_11 AC 451 ms
88,960 KB
testcase_12 AC 395 ms
84,072 KB
testcase_13 AC 370 ms
92,288 KB
testcase_14 AC 365 ms
90,752 KB
testcase_15 AC 449 ms
92,544 KB
testcase_16 AC 526 ms
92,544 KB
testcase_17 AC 547 ms
92,416 KB
testcase_18 AC 532 ms
92,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


class SegmentTree:
    
    def __init__(self, N, A):
        
        self.n = 2 ** (N.bit_length())
        
        self.A = A + [N + 1]
        
        self.Tree = [N] * (self.n * 2 - 1)
        
        for i in range(N):
            
            self.Tree[self.n + i - 1] = i
        
            self.update(i)
    
    
    def update(self, i):
        
        i = (self.n + i) // 2 - 1
        
        while i >= 0:
            
            
            if self.A[self.Tree[i * 2 + 1]] < self.A[self.Tree[i * 2 + 2]]:
                
                self.Tree[i] = self.Tree[i * 2 + 1]
                
            else:
                
                self.Tree[i] = self.Tree[i * 2 + 2]
                
            i -= 1
            i //= 2
            
    def query(self, l, r):
        
        l -= 1
        
        i = l + self.n - 1
        
        ans = self.Tree[i]
        x = 2
        while l < r:
            if l + x <= r and i % 2:
                i = (i - 1) // 2
                x *= 2
            
            else:
                l = l + x // 2
                if self.A[ans] > self.A[self.Tree[i]]:
                    ans = self.Tree[i]
                
                i = l + self.n - 1
                x = 2
                
        return ans + 1

        
N, Q = map(int, input().split())

A = list(map(int, input().split()))

X = SegmentTree(N, A)

for i in range(Q):
    
    q, l, r = map(int, input().split())
    
    if q == 1:
        
        X.A[l - 1], X.A[r - 1] = X.A[r - 1], X.A[l - 1]
        X.update(l - 1)
        X.update(r - 1)
    else:
        
        print(X.query(l, r))
0