結果
問題 | No.1687 What the Heck? |
ユーザー | brthyyjp |
提出日時 | 2021-09-24 21:32:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,691 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 108,488 KB |
最終ジャッジ日時 | 2024-07-05 10:07:55 |
合計ジャッジ時間 | 7,634 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,776 KB |
testcase_01 | AC | 37 ms
52,396 KB |
testcase_02 | AC | 37 ms
53,880 KB |
testcase_03 | WA | - |
testcase_04 | AC | 35 ms
52,140 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 300 ms
84,820 KB |
testcase_10 | AC | 214 ms
82,524 KB |
testcase_11 | AC | 223 ms
81,936 KB |
testcase_12 | AC | 831 ms
107,964 KB |
testcase_13 | AC | 797 ms
107,996 KB |
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.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: 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 bit.add(ok-1, -1) ans += i+1 print(ans)