結果
問題 | No.404 部分門松列 |
ユーザー | Navier_Boltzmann |
提出日時 | 2023-06-16 23:48:45 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,351 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 158,772 KB |
最終ジャッジ日時 | 2024-06-24 17:02:09 |
合計ジャッジ時間 | 26,893 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
61,824 KB |
testcase_01 | AC | 65 ms
56,064 KB |
testcase_02 | AC | 56 ms
56,192 KB |
testcase_03 | AC | 55 ms
56,576 KB |
testcase_04 | AC | 101 ms
76,416 KB |
testcase_05 | AC | 97 ms
76,416 KB |
testcase_06 | AC | 98 ms
76,544 KB |
testcase_07 | AC | 99 ms
76,672 KB |
testcase_08 | AC | 102 ms
76,672 KB |
testcase_09 | AC | 101 ms
76,672 KB |
testcase_10 | AC | 99 ms
76,544 KB |
testcase_11 | AC | 101 ms
76,544 KB |
testcase_12 | AC | 99 ms
76,288 KB |
testcase_13 | AC | 1,442 ms
124,816 KB |
testcase_14 | AC | 1,064 ms
106,328 KB |
testcase_15 | AC | 1,278 ms
94,836 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 583 ms
89,736 KB |
testcase_19 | AC | 1,003 ms
105,884 KB |
testcase_20 | AC | 1,899 ms
130,748 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 658 ms
91,532 KB |
testcase_23 | AC | 1,906 ms
125,540 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys,math input = sys.stdin.buffer.readline N = int(input()) A = list(map(int,input().split())) class SegTree: """ Segment Tree """ def __init__(self, init_val, segfunc, ide_ele): """ 初期化 init_val: 配列の初期値 """ n = len(init_val) self.segfunc = segfunc self.ide_ele = ide_ele self.num = 1 << (n - 1).bit_length() self.tree = [ide_ele] * 2 * self.num # 配列の値を葉にセット for i in range(n): self.tree[self.num + i] = init_val[i] # 構築していく for i in range(self.num - 1, 0, -1): self.tree[i] = segfunc(self.tree[2 * i], self.tree[2 * i + 1]) def update(self, k, x): """ k番目の値をxに更新 k: index(0-index) x: update value """ k += self.num self.tree[k] = x while k > 1: self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1]) k >>= 1 def query(self, l, r): """ [l, r)のsegfuncしたものを得る l: index(0-index) r: index(0-index) """ res = self.ide_ele l += self.num r += self.num while l < r: if l & 1: res = self.segfunc(res, self.tree[l]) l += 1 if r & 1: res = self.segfunc(res, self.tree[r - 1]) l >>= 1 r >>= 1 return res val = defaultdict(int) X = [(a,i) for i,a in enumerate(A)] X.sort() T = SegTree([0]*N,lambda x,y:x+y,0) C = Counter(A) V = SegTree([0]*(N+3),lambda x,y:x+y,0) stack = [] for i in range(N): a,idx = X[i] stack.append(idx) C[a] -= 1 val[a] += T.query(0,idx)*T.query(idx,N) - V.query(0,idx+1) if C[a]!=0: continue for jdx in stack: T.update(jdx,1) n = len(stack) stack.sort() for i in range(n-1): l = stack[i] r = stack[i+1] cnt = (i+1)*(n-1-i) V.update(l+1,V.query(l+1,l+2)+cnt) V.update(r,V.query(r,r+1)-cnt) stack = [] X.reverse() T = SegTree([0]*N,lambda x,y:x+y,0) C = Counter(A) V = SegTree([0]*(N+3),lambda x,y:x+y,0) stack = [] for i in range(N): a,idx = X[i] stack.append(idx) C[a] -= 1 val[a] += T.query(0,idx)*T.query(idx,N) - V.query(0,idx+1) if C[a]!=0: continue for jdx in stack: T.update(jdx,1) n = len(stack) stack.sort() for i in range(n-1): l = stack[i] r = stack[i+1] cnt = (i+1)*(n-1-i) V.update(l+1,V.query(l+1,l+2)+cnt) V.update(r,V.query(r,r+1)-cnt) stack = [] def cle(a,D): y = len(D)-1 x = 0 if D[x]>a: return 0 if D[y]<=a: return y+1 while y-x>1: mid = (y+x)//2 if D[mid]<=a: x = mid else: y = mid return y B = list(set([0]+A)) B.sort() S = list(accumulate([0]+[val[b] for b in B])) Q = int(input()) n = len(B) def count(H): h = cle(H,B) h = min(h,n-1) while B[h]>H: h -= 1 return S[h+1] for _ in range(Q): l,h = map(int,input().split()) print(count(h)-count(l-1))