結果
問題 | No.1975 Zigzag Sequence |
ユーザー | ニックネーム |
提出日時 | 2022-06-10 23:27:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,188 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 63,788 KB |
最終ジャッジ日時 | 2024-09-21 06:56:54 |
合計ジャッジ時間 | 38,582 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
11,008 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 271 ms
15,480 KB |
testcase_04 | AC | 121 ms
12,800 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 1,573 ms
36,108 KB |
testcase_07 | AC | 282 ms
15,832 KB |
testcase_08 | AC | 1,590 ms
32,112 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 1,624 ms
34,908 KB |
testcase_11 | AC | 1,887 ms
37,820 KB |
testcase_12 | AC | 415 ms
17,140 KB |
testcase_13 | AC | 33 ms
10,880 KB |
testcase_14 | AC | 33 ms
10,752 KB |
testcase_15 | AC | 32 ms
10,880 KB |
testcase_16 | AC | 32 ms
10,752 KB |
testcase_17 | AC | 32 ms
10,880 KB |
testcase_18 | AC | 1,701 ms
26,548 KB |
testcase_19 | AC | 1,681 ms
26,484 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 1,833 ms
32,820 KB |
testcase_33 | AC | 1,834 ms
32,824 KB |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
ソースコード
class BinaryIndexedTree: def __init__(self, n, mod): self.size = n self.tree = [0]*(n+1) self.mod = mod def add(self, i, x): while i <= self.size: self.tree[i] = (self.tree[i]+x)%self.mod i += i&-i def sum(self, i): s = 0 while i > 0: s = (s+self.tree[i])%self.mod i -= i&-i return s n = int(input()) a = list(map(int, input().split())) mod = 10**9+7 itov = sorted(set(a)) vtoi = {v: i for i, v in enumerate(itov)} b = [vtoi[v]+1 for v in a] r = [pow(2, i, mod) for i in range(n)] ldans = [0]*n luans = [0]*n ldbit = BinaryIndexedTree(n, mod) lubit = BinaryIndexedTree(n, mod) rdans = [0]*n ruans = [0]*n rdbit = BinaryIndexedTree(n, mod) rubit = BinaryIndexedTree(n, mod) ans = 0 for i, v in enumerate(b): ldans[i] = ldbit.sum(v-1) luans[i] = lubit.sum(n-v) ldbit.add(v, r[i]) lubit.add(n+1-v, r[i]) for i, v in enumerate(b[::-1]): rdans[i] = rdbit.sum(v-1) ruans[i] = rubit.sum(n-v) rdbit.add(v, r[i]) rubit.add(n+1-v, r[i]) for i in range(n): ans = (ans+ldans[i]*rdans[n-1-i])%mod ans = (ans+luans[i]*ruans[n-1-i])%mod print(ans)