結果
問題 | No.1441 MErGe |
ユーザー | mkawa2 |
提出日時 | 2022-01-23 18:29:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 688 ms / 1,000 ms |
コード長 | 2,184 bytes |
コンパイル時間 | 400 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 115,408 KB |
最終ジャッジ日時 | 2024-05-07 07:27:23 |
合計ジャッジ時間 | 15,465 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,864 KB |
testcase_01 | AC | 37 ms
52,992 KB |
testcase_02 | AC | 36 ms
52,608 KB |
testcase_03 | AC | 66 ms
73,600 KB |
testcase_04 | AC | 76 ms
76,288 KB |
testcase_05 | AC | 122 ms
77,584 KB |
testcase_06 | AC | 123 ms
77,696 KB |
testcase_07 | AC | 122 ms
77,808 KB |
testcase_08 | AC | 210 ms
84,852 KB |
testcase_09 | AC | 212 ms
83,540 KB |
testcase_10 | AC | 280 ms
83,232 KB |
testcase_11 | AC | 260 ms
82,108 KB |
testcase_12 | AC | 271 ms
84,716 KB |
testcase_13 | AC | 540 ms
115,096 KB |
testcase_14 | AC | 495 ms
114,996 KB |
testcase_15 | AC | 688 ms
102,272 KB |
testcase_16 | AC | 451 ms
112,892 KB |
testcase_17 | AC | 473 ms
111,052 KB |
testcase_18 | AC | 452 ms
106,752 KB |
testcase_19 | AC | 476 ms
102,272 KB |
testcase_20 | AC | 384 ms
107,116 KB |
testcase_21 | AC | 352 ms
99,712 KB |
testcase_22 | AC | 474 ms
99,328 KB |
testcase_23 | AC | 660 ms
115,092 KB |
testcase_24 | AC | 640 ms
115,092 KB |
testcase_25 | AC | 557 ms
115,408 KB |
testcase_26 | AC | 581 ms
115,032 KB |
testcase_27 | AC | 602 ms
115,004 KB |
testcase_28 | AC | 304 ms
114,948 KB |
testcase_29 | AC | 321 ms
115,000 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1<<31)-1 md = 10**9+7 # md = 998244353 class BitSum: def __init__(self, n): self.n = n+1 self.table = [0]*self.n def add(self, i, x): i += 1 while i < self.n: self.table[i] += x i += i & -i # [0,i]の和 def sum(self, i): i += 1 res = 0 while i > 0: res += self.table[i] i -= i & -i return res # [l,r)の和 def sumlr(self, l, r): if l >= r: return 0 if l == 0: return self.sum(r-1) return self.sum(r-1)-self.sum(l-1) # 数列を度数分布とみたときに、x番目がどのインデックスにあるかを返す # xが大きすぎるときは配列の長さnを返す def rank(self, x): idx = 0 for lv in range((self.n-1).bit_length()-1, -1, -1): mid = idx+(1 << lv) if mid >= self.n: continue if self.table[mid] < x: x -= self.table[mid] idx += 1 << lv return idx n, q = LI() aa = LI() cs = [0] for a in aa: cs.append(cs[-1]+a) bit = BitSum(n) for i in range(1, n): bit.add(i, 1) lr = list(range(n)) for _ in range(q): t, l, r = LI() l -= 1 if t == 1: i = bit.rank(l) for _ in range(r-l-1): j = lr[i]+1 bit.add(j, -1) k = lr[j] lr[k] = i lr[i] = k else: i = bit.rank(l) j = bit.rank(r) print(cs[j]-cs[i])