結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 WA -
testcase_04 AC 35 ms
51,328 KB
testcase_05 WA -
testcase_06 AC 35 ms
51,712 KB
testcase_07 WA -
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 36 ms
51,840 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 89 ms
102,784 KB
testcase_37 AC 104 ms
101,376 KB
testcase_38 AC 91 ms
102,400 KB
testcase_39 AC 72 ms
88,576 KB
testcase_40 AC 91 ms
93,184 KB
testcase_41 AC 34 ms
51,456 KB
testcase_42 AC 74 ms
89,216 KB
testcase_43 AC 88 ms
96,128 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