結果
問題 | No.1975 Zigzag Sequence |
ユーザー | 👑 rin204 |
提出日時 | 2022-06-11 14:50:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 270 ms / 2,000 ms |
コード長 | 1,511 bytes |
コンパイル時間 | 331 ms |
コンパイル使用メモリ | 82,332 KB |
実行使用メモリ | 126,464 KB |
最終ジャッジ日時 | 2024-09-22 01:40:22 |
合計ジャッジ時間 | 7,888 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,352 KB |
testcase_01 | AC | 39 ms
52,352 KB |
testcase_02 | AC | 41 ms
52,480 KB |
testcase_03 | AC | 100 ms
77,456 KB |
testcase_04 | AC | 88 ms
77,032 KB |
testcase_05 | AC | 213 ms
95,488 KB |
testcase_06 | AC | 183 ms
93,696 KB |
testcase_07 | AC | 100 ms
77,184 KB |
testcase_08 | AC | 177 ms
87,552 KB |
testcase_09 | AC | 225 ms
106,468 KB |
testcase_10 | AC | 174 ms
90,796 KB |
testcase_11 | AC | 197 ms
92,752 KB |
testcase_12 | AC | 107 ms
78,336 KB |
testcase_13 | AC | 41 ms
52,364 KB |
testcase_14 | AC | 40 ms
51,968 KB |
testcase_15 | AC | 40 ms
52,480 KB |
testcase_16 | AC | 40 ms
52,480 KB |
testcase_17 | AC | 42 ms
52,224 KB |
testcase_18 | AC | 166 ms
93,184 KB |
testcase_19 | AC | 169 ms
93,180 KB |
testcase_20 | AC | 218 ms
94,188 KB |
testcase_21 | AC | 215 ms
94,208 KB |
testcase_22 | AC | 251 ms
125,824 KB |
testcase_23 | AC | 250 ms
125,696 KB |
testcase_24 | AC | 265 ms
126,464 KB |
testcase_25 | AC | 270 ms
126,464 KB |
testcase_26 | AC | 221 ms
93,412 KB |
testcase_27 | AC | 257 ms
111,148 KB |
testcase_28 | AC | 267 ms
126,164 KB |
testcase_29 | AC | 259 ms
126,228 KB |
testcase_30 | AC | 266 ms
125,824 KB |
testcase_31 | AC | 259 ms
126,080 KB |
testcase_32 | AC | 189 ms
93,544 KB |
testcase_33 | AC | 190 ms
93,580 KB |
testcase_34 | AC | 226 ms
97,280 KB |
testcase_35 | AC | 227 ms
97,384 KB |
ソースコード
MOD = 10 ** 9 + 7 class Bit: def __init__(self, n): self.size = n self.n0 = 1 << (n.bit_length() - 1) self.tree = [0] * (n + 1) def range_sum(self, l, r): return self.sum(r - 1) - self.sum(l - 1) def sum(self, i): i += 1 s = 0 while i > 0: s += self.tree[i] s %= MOD i -= i & -i return s def get(self, i): return self.sum(i) - self.sum(i - 1) def add(self, i, x): i += 1 while i <= self.size: self.tree[i] += x self.tree[i] %= MOD i += i & -i def lower_bound(self, x): pos = 0 plus = self.n0 while plus > 0: if pos + plus <= self.size and self.tree[pos + plus] < x: x -= self.tree[pos + plus] pos += plus plus //= 2 return pos n = int(input()) A = list(map(int, input().split())) se = set(A) dic = {d:i for i, d in enumerate(sorted(se))} A = [dic[a] for a in A] l = len(se) bit = Bit(l) small = [0] * n big = [0] * n plus = 1 for i, a in enumerate(A): small[i] = bit.sum(a - 1) big[i] = bit.range_sum(a + 1, l) bit.add(a, plus) plus *= 2 plus %= MOD bit = Bit(l) plus = 1 for i in range(n - 1, -1, -1): a = A[i] small[i] *= bit.sum(a - 1) big[i] *= bit.range_sum(a + 1, l) bit.add(a, plus) plus *= 2 plus %= MOD ans = sum(big) + sum(small) print(ans % MOD)