結果
問題 | No.365 ジェンガソート |
ユーザー | AEn |
提出日時 | 2022-05-13 23:14:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,163 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 82,012 KB |
実行使用メモリ | 92,424 KB |
最終ジャッジ日時 | 2024-07-22 03:31:55 |
合計ジャッジ時間 | 5,443 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,840 KB |
testcase_01 | AC | 38 ms
51,968 KB |
testcase_02 | AC | 37 ms
52,096 KB |
testcase_03 | AC | 38 ms
51,840 KB |
testcase_04 | AC | 38 ms
51,584 KB |
testcase_05 | AC | 38 ms
51,968 KB |
testcase_06 | AC | 38 ms
51,584 KB |
testcase_07 | AC | 38 ms
52,336 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 39 ms
52,096 KB |
testcase_15 | AC | 39 ms
51,968 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 70 ms
76,288 KB |
testcase_19 | AC | 118 ms
91,520 KB |
testcase_20 | AC | 74 ms
79,104 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 110 ms
91,748 KB |
testcase_37 | AC | 113 ms
92,160 KB |
testcase_38 | WA | - |
testcase_39 | AC | 122 ms
91,392 KB |
testcase_40 | WA | - |
ソースコード
class Binary_Indexed_Tree: def __init__(self, n): self.size = n self.tree = [0] * (n + 1) self.depth = n.bit_length() # 配列のi番目までの和 1-indexed def sum(self, i): s = 0 while i > 0: s += self.tree[i] i -= i & -i return s # 区間[l, r)の和 def get_sum(self, l, r): return self.sum(r-1) - self.sum(l-1) # 1-indexed 配列のi番目にxを足す def add(self, i, x): while i <= self.size: self.tree[i] += x i += i & -i def lower_bound(self, x): """ 累積和がx以上になる最小のindexと、その直前までの累積和 """ sum_ = 0 pos = 0 for i in range(self.depth, -1, -1): k = pos + (1 << i) if k <= self.size and sum_ + self.tree[k] < x: sum_ += self.tree[k] pos += 1 << i return pos + 1, sum_ N = int(input()) a = list(map(int, input().split())) BIT = Binary_Indexed_Tree(N) res = 0 for i in range(N): BIT.add(a[i], 1) if BIT.get_sum(a[i]+1, N+1)>0: res += 1 print(res)