結果

問題 No.1687 What the Heck?
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-12 23:10:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,092 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-05-07 09:36:19
合計ジャッジ時間 4,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 WA -
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 166 ms
84,992 KB
testcase_08 AC 194 ms
89,984 KB
testcase_09 WA -
testcase_10 AC 136 ms
82,304 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 298 ms
107,648 KB
testcase_14 AC 300 ms
108,032 KB
testcase_15 AC 311 ms
107,844 KB
testcase_16 AC 301 ms
107,520 KB
testcase_17 AC 102 ms
77,056 KB
testcase_18 AC 310 ms
107,648 KB
testcase_19 AC 64 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i
            
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
    
    def lb(self, x):
        sv = 0
        svid = 0 
        topid = pow(2,(self.size).bit_length()-1)

        while topid:
            if svid + topid <= self.size and sv + self.tree[svid+topid] <= x:
                sv += self.tree[svid+topid]
                svid += topid
            topid //= 2
        return svid + 1

n=int(input())
a=list(map(int,input().split()))
bit=Bit(n)
for i in range(1,n+1):
    bit.add(i,1)

x,y=0,0
for i in range(n-1,-1,-1):
    t=bit.lb(bit.sum(a[i]))
    if t == n+1:
        t1=bit.lb(bit.sum(a[i])-1)
        if t1 == a[i]:
            bit.add(a[i],-1)
        else:
            t2=bit.lb(0)
            bit.add(t2,-1)
            y += i+1
    else:
        bit.add(t,-1)
        x += i+1

print(x-y)
0