結果
問題 | No.1687 What the Heck? |
ユーザー | lllllll88938494 |
提出日時 | 2022-09-12 22:48:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,073 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 108,288 KB |
最終ジャッジ日時 | 2024-05-07 09:15:46 |
合計ジャッジ時間 | 3,803 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,224 KB |
testcase_01 | AC | 36 ms
52,608 KB |
testcase_02 | WA | - |
testcase_03 | AC | 36 ms
52,480 KB |
testcase_04 | AC | 36 ms
51,840 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
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(a[i]) if t == n+1: t1=bit.lb(a[i]-1) if t1 != n+1: 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)