結果

問題 No.1975 Zigzag Sequence
ユーザー mkawa2mkawa2
提出日時 2023-02-23 07:57:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 108,372 KB
最終ジャッジ日時 2024-07-23 05:47:25
合計ジャッジ時間 15,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,232 KB
testcase_01 AC 38 ms
53,536 KB
testcase_02 AC 38 ms
53,364 KB
testcase_03 AC 145 ms
78,376 KB
testcase_04 AC 132 ms
78,132 KB
testcase_05 AC 671 ms
101,128 KB
testcase_06 AC 450 ms
90,608 KB
testcase_07 AC 147 ms
78,556 KB
testcase_08 AC 455 ms
92,320 KB
testcase_09 AC 624 ms
98,128 KB
testcase_10 AC 448 ms
90,424 KB
testcase_11 AC 490 ms
93,224 KB
testcase_12 AC 172 ms
79,580 KB
testcase_13 AC 39 ms
54,156 KB
testcase_14 AC 38 ms
53,752 KB
testcase_15 AC 39 ms
53,856 KB
testcase_16 AC 39 ms
53,272 KB
testcase_17 AC 40 ms
53,612 KB
testcase_18 AC 191 ms
104,668 KB
testcase_19 AC 189 ms
104,296 KB
testcase_20 AC 519 ms
108,372 KB
testcase_21 AC 520 ms
107,496 KB
testcase_22 AC 374 ms
100,460 KB
testcase_23 AC 376 ms
100,356 KB
testcase_24 AC 498 ms
100,368 KB
testcase_25 AC 503 ms
100,576 KB
testcase_26 AC 725 ms
100,264 KB
testcase_27 AC 753 ms
100,416 KB
testcase_28 AC 462 ms
100,764 KB
testcase_29 AC 457 ms
100,540 KB
testcase_30 AC 464 ms
100,804 KB
testcase_31 AC 464 ms
100,300 KB
testcase_32 AC 366 ms
103,780 KB
testcase_33 AC 364 ms
104,040 KB
testcase_34 AC 696 ms
102,040 KB
testcase_35 AC 686 ms
101,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
        self.aa = [0]*n

    def __getitem__(self, item):
        return self.aa[item]

    def add(self, i, x):
        self.aa[i] += x
        i += 1
        while i < self.n:
            self.table[i] += x
            i += i & -i

    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self.table[i]
            i -= i & -i
        return res

    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)

def solve():
    res = 0
    ia = sorted(enumerate(aa), key=lambda x: x[1])
    ll, rr = BitSum(n), BitSum(n)
    pend = []
    for i, a in ia:
        if pend and pend[0][1] != a:
            for j, _ in pend:
                ll.add(j, pow(2, j, md))
                j = n-1-j
                rr.add(j, pow(2, j, md))
            pend.clear()
        res += ll.sum(i)*rr.sum(n-1-i)%md
        res %= md
        pend.append((i, a))
    return res

n = II()
aa = LI()

ans = solve()
aa = [-a for a in aa]
ans += solve()
print(ans%md)
0