結果

問題 No.711 競技レーティング単調増加
ユーザー vwxyzvwxyz
提出日時 2022-07-16 02:04:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,328 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,524 KB
最終ジャッジ日時 2024-06-28 00:18:23
合計ジャッジ時間 10,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,648 KB
testcase_01 AC 42 ms
11,776 KB
testcase_02 AC 39 ms
11,776 KB
testcase_03 WA -
testcase_04 AC 40 ms
11,776 KB
testcase_05 WA -
testcase_06 AC 39 ms
11,904 KB
testcase_07 AC 38 ms
11,776 KB
testcase_08 AC 39 ms
11,776 KB
testcase_09 AC 39 ms
11,648 KB
testcase_10 AC 41 ms
11,776 KB
testcase_11 AC 42 ms
11,776 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
11,776 KB
testcase_16 AC 39 ms
11,904 KB
testcase_17 AC 41 ms
11,904 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 264 ms
30,884 KB
testcase_31 AC 276 ms
32,348 KB
testcase_32 AC 284 ms
34,000 KB
testcase_33 AC 285 ms
37,192 KB
testcase_34 AC 266 ms
35,632 KB
testcase_35 AC 298 ms
38,524 KB
testcase_36 AC 318 ms
35,440 KB
testcase_37 AC 330 ms
34,448 KB
testcase_38 AC 310 ms
33,648 KB
testcase_39 AC 185 ms
24,032 KB
testcase_40 AC 196 ms
27,452 KB
testcase_41 AC 41 ms
11,904 KB
testcase_42 AC 168 ms
24,048 KB
testcase_43 AC 226 ms
32,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

def LIS(lst,weakly=False,inf=float('inf'),restoration=False):
    f=bisect.bisect_right if weakly else bisect.bisect_left
    N=len(lst)
    update=[None]*N
    dp=[inf]*N
    for k,x in enumerate(lst):
        i=f(dp,x)
        dp[i]=x
        update[k]=(i,dp[i])
    len_lis=bisect.bisect_left(dp,inf)
    if restoration:
        lis=[None]*len_lis
        len_lis-=1
        for i,x in update[::-1]:
            if i==len_lis:
                lis[len_lis]=x
                len_lis-=1
        return lis
    else:
        return len_lis

N=int(readline())
A=list(map(int,readline().split()))
for i in range(N):
    A[i]-=i
ans=N-LIS(A,weakly=True)
print(ans)
0