結果

問題 No.1734 Decreasing Elements
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-06 12:16:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,138 ms / 3,000 ms
コード長 1,602 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,236 KB
最終ジャッジ日時 2024-11-07 08:13:16
合計ジャッジ時間 22,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,472 KB
testcase_01 AC 47 ms
57,088 KB
testcase_02 AC 52 ms
63,104 KB
testcase_03 AC 49 ms
57,472 KB
testcase_04 AC 48 ms
57,600 KB
testcase_05 AC 48 ms
57,216 KB
testcase_06 AC 55 ms
63,616 KB
testcase_07 AC 1,010 ms
125,672 KB
testcase_08 AC 994 ms
125,832 KB
testcase_09 AC 1,011 ms
126,736 KB
testcase_10 AC 1,014 ms
128,840 KB
testcase_11 AC 992 ms
129,992 KB
testcase_12 AC 648 ms
110,880 KB
testcase_13 AC 951 ms
127,268 KB
testcase_14 AC 1,070 ms
132,236 KB
testcase_15 AC 1,039 ms
129,496 KB
testcase_16 AC 1,030 ms
131,364 KB
testcase_17 AC 1,040 ms
129,764 KB
testcase_18 AC 1,068 ms
130,220 KB
testcase_19 AC 1,104 ms
113,176 KB
testcase_20 AC 1,138 ms
113,696 KB
testcase_21 AC 902 ms
111,488 KB
testcase_22 AC 1,053 ms
117,348 KB
testcase_23 AC 1,003 ms
112,488 KB
testcase_24 AC 891 ms
112,800 KB
testcase_25 AC 1,115 ms
124,264 KB
testcase_26 AC 1,062 ms
123,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.size = n
        self.tree = [0]*(n+1)
 
    def build(self, list):
        self.tree[1:] = list.copy()
        for i in range(self.size+1):
            j = i + (i & (-i))
            if j < self.size+1:
                self.tree[j] += self.tree[i]

    def sum(self, i):
        # [0, i) の要素の総和を返す
        s = 0
        while i>0:
            s += self.tree[i]
            i -= i & -i
        return s
    # 0 index を 1 index に変更  転倒数を求めるなら1を足していく
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    # 総和がx以上になる位置のindex をbinary search
    def bsearch(self,x):
        le = 0
        ri = 1<<(self.size.bit_length()-1)
        while ri > 0:
            if le+ri <= self.size and self.tree[le+ri]<x:
                x -= self.tree[le+ri]
                le += ri
            ri >>= 1
        return le+1

from heapq import heappop, heappush

n = int(input())
A = list(map(int,input().split()))
M = 2*10**5
use = [0]*(2*M+1)
use[0] = 1
ans = 0
h = [[-M,0]]
bit = BIT(M+2)
bit.add(0,1)
bit.add(M+1,1)

for a in A:
    if use[a]:
        continue
    ans += 1
    num = bit.sum(a)

    ind = bit.bsearch(num)-1
    now = a-ind
    l = []
    while h and -h[0][0] >= now:
        size,lind = heappop(h)
        size *= -1
        use[lind+now] = 1
        bit.add(lind+now,1)
        l.append([-now+1,lind])
        l.append([-size+now,lind+now])
    for nex in l:
        heappush(h,nex)
print(ans)
0