結果

問題 No.1687 What the Heck?
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-24 21:34:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,713 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 86,984 KB
実行使用メモリ 108,816 KB
最終ジャッジ日時 2023-09-18 20:50:32
合計ジャッジ時間 9,766 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,220 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 74 ms
71,380 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 279 ms
83,580 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,011 ms
108,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(self.n+1) # 1-indexed

    def init(self, init_val):
        for i, v in enumerate(init_val):
            self.add(i, v)

    def add(self, i, x):
        # i: 0-indexed
        i += 1 # to 1-indexed
        while i <= self.n:
            self.bit[i] += x
            i += (i & -i)

    def sum(self, i, j):
        # return sum of [i, j)
        # i, j: 0-indexed
        return self._sum(j) - self._sum(i)

    def _sum(self, i):
        # return sum of [0, i)
        # i: 0-indexed
        res = 0
        while i > 0:
            res += self.bit[i]
            i -= i & (-i)
        return res

    def lower_bound(self, x):
        s = 0
        pos = 0
        depth = self.n.bit_length()
        v = 1 << depth
        for i in range(depth, -1, -1):
            k = pos + v
            if k <= self.n and s + self.bit[k] < x:
                    s += self.bit[k]
                    pos += v
            v >>= 1
        return pos

    def __str__(self): # for debug
        arr = [self.sum(i,i+1) for i in range(self.n)]
        return str(arr)

n = int(input())
P = list(map(int, input().split()))
bit = BIT(n+5)
for i in range(1, n+1):
    bit.add(i, 1)
ans = 0
for i in reversed(range(n)):
    p = P[i]
    s = bit.sum(p, bit.n)
    if s == 0:
        j = bit.lower_bound(1)
        if j != p:
            ans -= (i+1)
        bit.add(j, -1)
    else:
        ng = p
        ok = bit.n
        while ng+1 < ok:
            c = (ng+ok)//2
            if bit.sum(p+1, c) > 0:
                ok = c
            else:
                ng = c
        if ok-1 != p:
            ans += i+1
        bit.add(ok-1, -1)
print(ans)
0