結果

問題 No.1687 What the Heck?
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-25 17:44:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 927 ms / 2,000 ms
コード長 1,893 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,956 KB
最終ジャッジ日時 2024-07-05 12:09:41
合計ジャッジ時間 8,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 39 ms
52,864 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 375 ms
85,504 KB
testcase_08 AC 449 ms
90,112 KB
testcase_09 AC 347 ms
84,736 KB
testcase_10 AC 252 ms
81,920 KB
testcase_11 AC 264 ms
81,900 KB
testcase_12 AC 891 ms
107,412 KB
testcase_13 AC 891 ms
107,412 KB
testcase_14 AC 905 ms
107,956 KB
testcase_15 AC 927 ms
107,504 KB
testcase_16 AC 911 ms
107,392 KB
testcase_17 AC 105 ms
76,808 KB
testcase_18 AC 923 ms
107,776 KB
testcase_19 AC 71 ms
75,844 KB
権限があれば一括ダウンロードができます

ソースコード

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+1, bit.n)
    if s == 0:
        if bit.sum(p, p+1) > 0:
            bit.add(p, -1)
        else:
            j = bit.lower_bound(1)
            if j != p:
                ans -= (i+1)
            bit.add(j, -1)
    else:
        ng = p+1
        ok = bit.n
        while ng+1 < ok:
            c = (ng+ok)//2
            if bit.sum(p+1, c) > 0:
                ok = c
            else:
                ng = c
        ans += i+1
        bit.add(ok-1, -1)
temp = 0
for i, p in enumerate(P):
    if p != n:
        temp += (i+1)
    else:
        temp -= i+1
print(max(ans, temp))
0