結果
問題 | No.2942 Sigma Music Game Level Problem |
ユーザー | LyricalMaestro |
提出日時 | 2024-10-21 00:05:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,403 ms / 6,000 ms |
コード長 | 2,133 bytes |
コンパイル時間 | 929 ms |
コンパイル使用メモリ | 82,352 KB |
実行使用メモリ | 276,860 KB |
最終ジャッジ日時 | 2024-11-15 20:06:33 |
合計ジャッジ時間 | 27,309 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
55,296 KB |
testcase_01 | AC | 44 ms
55,168 KB |
testcase_02 | AC | 44 ms
55,168 KB |
testcase_03 | AC | 43 ms
55,424 KB |
testcase_04 | AC | 43 ms
55,680 KB |
testcase_05 | AC | 44 ms
55,552 KB |
testcase_06 | AC | 45 ms
55,424 KB |
testcase_07 | AC | 50 ms
62,720 KB |
testcase_08 | AC | 83 ms
73,216 KB |
testcase_09 | AC | 60 ms
67,456 KB |
testcase_10 | AC | 57 ms
66,816 KB |
testcase_11 | AC | 908 ms
183,100 KB |
testcase_12 | AC | 2,018 ms
245,068 KB |
testcase_13 | AC | 1,888 ms
220,096 KB |
testcase_14 | AC | 932 ms
213,176 KB |
testcase_15 | AC | 701 ms
195,676 KB |
testcase_16 | AC | 1,727 ms
213,080 KB |
testcase_17 | AC | 470 ms
115,232 KB |
testcase_18 | AC | 1,333 ms
182,696 KB |
testcase_19 | AC | 2,403 ms
268,040 KB |
testcase_20 | AC | 664 ms
170,428 KB |
testcase_21 | AC | 2,169 ms
272,184 KB |
testcase_22 | AC | 2,185 ms
271,924 KB |
testcase_23 | AC | 710 ms
114,404 KB |
testcase_24 | AC | 41 ms
55,600 KB |
testcase_25 | AC | 41 ms
55,756 KB |
testcase_26 | AC | 1,858 ms
276,860 KB |
ソースコード
## https://yukicoder.me/problems/no/2942 class BinaryIndexTree: """ フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス """ def __init__(self, size): self.size = size self.array = [0] * (size + 1) def add(self, x, a): index = x while index <= self.size: self.array[index] += a index += index & (-index) def sum(self, x): index = x ans = 0 while index > 0: ans += self.array[index] index -= index & (-index) return ans def least_upper_bound(self, value): if self.sum(self.size) < value: return -1 elif value <= 0: return 0 m = 1 while m < self.size: m *= 2 k = 0 k_sum = 0 while m > 0: k0 = k + m if k0 < self.size: if k_sum + self.array[k0] < value: k_sum += self.array[k0] k += m m //= 2 if k < self.size: return k + 1 else: return -1 def main(): N, Q, L0 = map(int, input().split()) A = list(map(int, input().split())) queries = [] for _ in range(Q): values = tuple(map(int, input().split())) queries.append(values) max_value = 2 * 10 ** 5 bit_count = BinaryIndexTree(max_value + 1) bit_value = BinaryIndexTree(max_value + 1) for a in A: bit_count.add(a + 1, 1) bit_value.add(a + 1, a) printed = False for values in queries: if values[0] == 1: _, v = values bit_count.add(v + 1, 1) bit_value.add(v + 1, v) elif values[0] == 3: continue elif values[0] == 2: _, l, r = values counts = bit_count.sum(r + 1) - bit_count.sum(l) sum_v = bit_value.sum(r + 1) - bit_value.sum(l) print(counts, sum_v) printed = True if not printed: print("Not Found!") if __name__ == "__main__": main()