結果

問題 No.1975 Zigzag Sequence
ユーザー titiatitia
提出日時 2022-06-13 01:56:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,859 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-09-24 16:14:12
合計ジャッジ時間 41,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
14,720 KB
testcase_01 AC 73 ms
14,720 KB
testcase_02 AC 72 ms
14,720 KB
testcase_03 AC 250 ms
17,664 KB
testcase_04 AC 141 ms
15,744 KB
testcase_05 AC 1,773 ms
25,812 KB
testcase_06 AC 1,364 ms
25,672 KB
testcase_07 AC 267 ms
17,644 KB
testcase_08 AC 992 ms
21,208 KB
testcase_09 AC 1,979 ms
30,996 KB
testcase_10 AC 1,267 ms
24,468 KB
testcase_11 AC 1,464 ms
25,796 KB
testcase_12 AC 326 ms
17,060 KB
testcase_13 AC 72 ms
14,720 KB
testcase_14 AC 72 ms
14,848 KB
testcase_15 AC 72 ms
14,848 KB
testcase_16 AC 71 ms
14,720 KB
testcase_17 AC 73 ms
14,720 KB
testcase_18 AC 404 ms
24,252 KB
testcase_19 AC 404 ms
24,044 KB
testcase_20 AC 1,656 ms
25,216 KB
testcase_21 AC 1,698 ms
25,172 KB
testcase_22 AC 1,931 ms
40,144 KB
testcase_23 AC 1,931 ms
40,152 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,778 ms
25,824 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 426 ms
24,224 KB
testcase_33 AC 428 ms
24,108 KB
testcase_34 AC 1,878 ms
27,292 KB
testcase_35 AC 1,875 ms
27,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

N=int(input())
A=list(map(int,input().split()))

def solve(A):
    A=list(A)

    S=sorted(set(A))
    D={S[i]:i+1 for i in range(len(S))}

    for i in range(N):
        A[i]=D[A[i]]

    # BIT(BIT-indexed tree)
    LEN=len(S)+1

    BIT=[0]*(LEN+1) # 1-indexedなtree. 配列BITの長さはLEN+1にしていることに注意。

    def update(v,w): # index vにwを加える
        while v<=LEN:
            BIT[v]+=w
            v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4

    def getvalue(v): # [1,v]の区間の和を求める
        ANS=0
        while v!=0:
            ANS+=BIT[v]
            v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ
        return ANS


    BIT2=[0]*(LEN+1) # 1-indexedなtree. 配列BITの長さはLEN+1にしていることに注意。

    def update2(v,w): # index vにwを加える
        while v<=LEN:
            BIT2[v]+=w
            v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4

    def getvalue2(v): # [1,v]の区間の和を求める
        ANS=0
        while v!=0:
            ANS+=BIT2[v]
            v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ
        return ANS

    POW2=[1]
    for i in range(10**5+10):
        POW2.append(POW2[-1]*2%mod)


    for i in range(N):
        a=A[i]
        update(a,POW2[i])

    ANS=0

    for i in range(N-1,-1,-1):
        a=A[i]
        ANS+=getvalue(a-1)*getvalue2(a-1)
        ANS%=mod

        update(a,-POW2[i])
        update2(a,POW2[N-1-i])

    return ANS


B=[10**10-a for a in A]
print((solve(tuple(A))+solve(tuple(B)))%mod)

    
0