結果
問題 | No.1975 Zigzag Sequence |
ユーザー | ニックネーム |
提出日時 | 2022-06-10 23:26:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,187 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 63,796 KB |
最終ジャッジ日時 | 2024-09-21 06:55:38 |
合計ジャッジ時間 | 36,649 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,880 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 30 ms
11,008 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 31 ms
10,880 KB |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 30 ms
10,880 KB |
testcase_16 | AC | 31 ms
10,880 KB |
testcase_17 | AC | 31 ms
11,008 KB |
testcase_18 | AC | 1,606 ms
26,424 KB |
testcase_19 | AC | 1,618 ms
26,488 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 | WA | - |
testcase_33 | WA | - |
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**+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)