結果
問題 | No.1975 Zigzag Sequence |
ユーザー | titia |
提出日時 | 2022-06-13 01:55:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,853 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 41,580 KB |
最終ジャッジ日時 | 2024-09-24 16:11:49 |
合計ジャッジ時間 | 41,917 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
14,720 KB |
testcase_01 | AC | 73 ms
14,720 KB |
testcase_02 | AC | 73 ms
14,720 KB |
testcase_03 | WA | - |
testcase_04 | AC | 137 ms
15,616 KB |
testcase_05 | AC | 1,691 ms
25,624 KB |
testcase_06 | AC | 1,261 ms
25,628 KB |
testcase_07 | WA | - |
testcase_08 | AC | 998 ms
21,340 KB |
testcase_09 | AC | 1,856 ms
30,772 KB |
testcase_10 | AC | 1,247 ms
24,560 KB |
testcase_11 | AC | 1,368 ms
25,844 KB |
testcase_12 | WA | - |
testcase_13 | AC | 71 ms
14,720 KB |
testcase_14 | AC | 72 ms
14,592 KB |
testcase_15 | AC | 72 ms
14,720 KB |
testcase_16 | AC | 72 ms
14,720 KB |
testcase_17 | AC | 72 ms
14,720 KB |
testcase_18 | AC | 407 ms
24,124 KB |
testcase_19 | AC | 401 ms
24,252 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1,643 ms
25,168 KB |
testcase_22 | AC | 1,916 ms
40,000 KB |
testcase_23 | AC | 1,908 ms
40,164 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | WA | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 1,875 ms
27,152 KB |
testcase_35 | WA | - |
ソースコード
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)))