結果

問題 No.711 競技レーティング単調増加
ユーザー しらっ亭しらっ亭
提出日時 2017-05-23 00:49:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,760 KB
最終ジャッジ日時 2024-09-19 10:33:46
合計ジャッジ時間 14,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 525 ms
25,484 KB
testcase_19 AC 500 ms
25,852 KB
testcase_20 AC 544 ms
25,908 KB
testcase_21 AC 566 ms
27,616 KB
testcase_22 AC 529 ms
26,308 KB
testcase_23 AC 597 ms
28,548 KB
testcase_24 AC 586 ms
28,248 KB
testcase_25 AC 485 ms
25,060 KB
testcase_26 AC 539 ms
26,616 KB
testcase_27 AC 483 ms
24,432 KB
testcase_28 AC 468 ms
27,028 KB
testcase_29 AC 559 ms
30,316 KB
testcase_30 AC 461 ms
26,996 KB
testcase_31 AC 512 ms
29,024 KB
testcase_32 AC 539 ms
30,516 KB
testcase_33 AC 623 ms
29,416 KB
testcase_34 AC 585 ms
28,308 KB
testcase_35 AC 657 ms
31,760 KB
testcase_36 AC 528 ms
13,768 KB
testcase_37 AC 540 ms
31,740 KB
testcase_38 AC 499 ms
28,592 KB
testcase_39 AC 281 ms
20,516 KB
testcase_40 AC 348 ms
22,556 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 321 ms
20,556 KB
testcase_43 AC 440 ms
24,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# O(n log n) の想定解


def solve():
    n = int(input())
    A = list(map(int, input().split()))

    inf = 10 ** 9 + 7

    dp = [inf] * (n + 1)
    dp[0] = 0

    inc = 0

    for i, a in enumerate(A):
        # インクリメントする前の配列で、j+1 を二分探索する
        lo = -1
        hi = i + 1
        while hi - lo > 1:
            mid = (hi + lo) // 2
            if dp[mid] + inc < a:
                lo = mid
            else:
                hi = mid

        # インクリメント回数
        inc += 1

        # 実際の置き換え
        if lo >= 0:
            dp[lo + 1] = a - inc

    for j in range(n, -1, -1):
        if dp[j] < inf:
            return n - j

    assert False


if __name__ == '__main__':
    print(solve())
0