树状数组,python
摘要:解题思路:注意事项:参考代码:n=int(input())h=list(map(int,input().split()))maxh=max(h)cnt=[0]*(n)c=[0]*(maxh+2)#c[……
1439: 蓝桥杯历届试题-小朋友排队 python 时间超限
摘要: n = int(input())
a = list(map(int,input().strip().split()))
a.insert(0,0)
b……