結果

問題 No.2036 Max Middle
ユーザー lilictakalilictaka
提出日時 2022-09-16 13:37:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,456 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 124,288 KB
最終ジャッジ日時 2024-06-01 05:42:59
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 117 ms
101,632 KB
testcase_09 AC 150 ms
104,252 KB
testcase_10 AC 165 ms
116,552 KB
testcase_11 AC 151 ms
113,188 KB
testcase_12 AC 153 ms
123,776 KB
testcase_13 AC 169 ms
116,788 KB
testcase_14 AC 63 ms
68,468 KB
testcase_15 AC 60 ms
67,456 KB
testcase_16 AC 160 ms
116,652 KB
testcase_17 AC 146 ms
121,344 KB
testcase_18 AC 112 ms
123,776 KB
testcase_19 AC 152 ms
123,776 KB
testcase_20 AC 154 ms
124,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v,ope):
        self.update(i, ope(self[i],v))

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)
N = int(input())
A = list(map(int,input().split()))
B = []
for i in range(N-1):
    if A[i] < A[i+1]:
        B.append(1)
    else:
        B.append(0)
ans = 0
seg = SegmentTree(B,lambda x,y:x+y,0)
for i in range(len(B)):
    if seg[i] == 0:
        ans += seg.sum(0,i)
print(ans)
0