結果
問題 | No.711 競技レーティング単調増加 |
ユーザー | 已经死了 |
提出日時 | 2024-06-15 14:29:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 391 ms / 2,000 ms |
コード長 | 2,573 bytes |
コンパイル時間 | 506 ms |
コンパイル使用メモリ | 82,484 KB |
実行使用メモリ | 177,452 KB |
最終ジャッジ日時 | 2024-06-15 14:29:21 |
合計ジャッジ時間 | 13,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 166 ms
92,364 KB |
testcase_01 | AC | 163 ms
92,504 KB |
testcase_02 | AC | 165 ms
92,496 KB |
testcase_03 | AC | 168 ms
92,596 KB |
testcase_04 | AC | 162 ms
92,604 KB |
testcase_05 | AC | 166 ms
92,508 KB |
testcase_06 | AC | 162 ms
92,320 KB |
testcase_07 | AC | 162 ms
92,388 KB |
testcase_08 | AC | 161 ms
92,388 KB |
testcase_09 | AC | 166 ms
92,700 KB |
testcase_10 | AC | 163 ms
92,356 KB |
testcase_11 | AC | 163 ms
92,572 KB |
testcase_12 | AC | 162 ms
92,312 KB |
testcase_13 | AC | 163 ms
92,328 KB |
testcase_14 | AC | 164 ms
92,568 KB |
testcase_15 | AC | 164 ms
92,376 KB |
testcase_16 | AC | 164 ms
92,460 KB |
testcase_17 | AC | 165 ms
92,432 KB |
testcase_18 | AC | 333 ms
140,108 KB |
testcase_19 | AC | 327 ms
137,092 KB |
testcase_20 | AC | 328 ms
140,540 KB |
testcase_21 | AC | 339 ms
143,752 KB |
testcase_22 | AC | 327 ms
139,088 KB |
testcase_23 | AC | 346 ms
145,992 KB |
testcase_24 | AC | 358 ms
145,768 KB |
testcase_25 | AC | 319 ms
138,392 KB |
testcase_26 | AC | 326 ms
140,260 KB |
testcase_27 | AC | 311 ms
134,548 KB |
testcase_28 | AC | 216 ms
118,860 KB |
testcase_29 | AC | 221 ms
122,508 KB |
testcase_30 | AC | 332 ms
147,508 KB |
testcase_31 | AC | 384 ms
137,180 KB |
testcase_32 | AC | 391 ms
137,484 KB |
testcase_33 | AC | 313 ms
147,416 KB |
testcase_34 | AC | 294 ms
142,532 KB |
testcase_35 | AC | 314 ms
137,716 KB |
testcase_36 | AC | 186 ms
119,000 KB |
testcase_37 | AC | 385 ms
177,452 KB |
testcase_38 | AC | 323 ms
165,828 KB |
testcase_39 | AC | 224 ms
125,264 KB |
testcase_40 | AC | 243 ms
123,864 KB |
testcase_41 | AC | 158 ms
92,436 KB |
testcase_42 | AC | 216 ms
112,896 KB |
testcase_43 | AC | 289 ms
168,692 KB |
ソースコード
import os,sys,random,threading #sys.exit() 退出程序 from random import randint,choice,shuffle #randint(a,b)从[a,b]范围随机选择一个数 #choice(seq)seq可以是一个列表,元组或字符串,从seq中随机选取一个元素 #shuffle(x)将一个可变的序列x中的元素打乱 from copy import deepcopy from io import BytesIO,IOBase from types import GeneratorType from functools import lru_cache,reduce #reduce(op,迭代对象) from bisect import bisect_left,bisect_right #bisect_left(x) 大于等于x的第一个下标 #bisect_right(x) 大于x的第一个下标 from collections import Counter,defaultdict,deque from itertools import accumulate,combinations,permutations #accumulate(a)用a序列生成一个累积迭代器,一般list化前面放个[0]做前缀和用 #combinations(a,k)a序列选k个 组合迭代器 #permutations(a,k)a序列选k个 排列迭代器 from heapq import heapify,heappop,heappush #heapify将列表转为堆 from typing import Generic,Iterable,Iterator,TypeVar,Union,List from string import ascii_lowercase,ascii_uppercase,digits #小写字母,大写字母,十进制数字 from math import ceil,floor,sqrt,pi,factorial,gcd,log,log10,log2,inf #ceil向上取整,floor向下取整 ,sqrt开方 ,factorial阶乘 from decimal import Decimal,getcontext #Decimal(s) 实例化Decimal对象,一般使用字符串 #getcontext().prec=100 修改精度 from sys import stdin, stdout, setrecursionlimit input = lambda: sys.stdin.readline().rstrip("\r\n") MI = lambda :map(int,input().split()) li = lambda :list(MI()) ii = lambda :int(input()) mod = int(1e9 + 7) #998244353 inf = int(1e20) py = lambda :print("YES") pn = lambda :print("NO") DIRS = [(0, 1), (1, 0), (0, -1), (-1, 0)] # 右下左上 DIRS8 = [(0, 1), (1, 1), (1, 0), (1, -1), (0, -1), (-1, -1), (-1, 0),(-1, 1)] # →↘↓↙←↖↑↗ """单点更新,前缀最值查询""" class BIT: def __init__(self, n): self.n = n self.max_tree = [0] * (n + 1) def update(self, idx, val): while idx <= self.n: self.max_tree[idx] = max(self.max_tree[idx], val) idx += idx & (-idx) def query(self, idx): res = 0 while idx > 0: res = max(res, self.max_tree[idx]) idx -= idx & (-idx) return res n=ii() arr=li() a=[] for i,x in enumerate(arr,1): if x-i>=0: a.append(x-i) d=sorted(set(a)) d={x:i+1 for i,x in enumerate(d)} res=0 bit=BIT(len(d)+5) for x in a: q=bit.query(d[x]) res=max(res,q+1) bit.update(d[x],q+1) print(n-res)