結果

問題 No.711 競技レーティング単調増加
ユーザー sjikisjiki
提出日時 2024-05-07 06:51:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 107,080 KB
最終ジャッジ日時 2024-05-07 06:51:13
合計ジャッジ時間 6,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 36 ms
51,584 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,096 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 37 ms
52,332 KB
testcase_10 AC 37 ms
51,584 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
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 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 102 ms
103,784 KB
testcase_37 AC 114 ms
101,376 KB
testcase_38 AC 100 ms
102,400 KB
testcase_39 AC 81 ms
88,832 KB
testcase_40 AC 102 ms
93,596 KB
testcase_41 AC 36 ms
51,840 KB
testcase_42 AC 84 ms
89,600 KB
testcase_43 AC 99 ms
96,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def find_LIS_length(sequence):
    from bisect import bisect_left
    LIS = []
    for value in sequence:
        pos = bisect_left(LIS, value)
        if pos == len(LIS):
            LIS.append(value)
        else:
            LIS[pos] = value
    return len(LIS)

def minimum_operations_to_strictly_increasing(N, ratings):
    # ratingsは1からNまでの順列であるため、直接LISを求める
    return N - find_LIS_length(ratings)

# 入力
N = int(input())
ratings = list(map(int, input().split()))

# 出力
print(minimum_operations_to_strictly_increasing(N, ratings))
0