結果

問題 No.711 競技レーティング単調増加
ユーザー PachicobuePachicobue
提出日時 2018-07-07 18:13:23
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 198,308 KB
最終ジャッジ日時 2025-01-06 11:51:00
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,824 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 53 ms
6,820 KB
testcase_19 AC 51 ms
6,820 KB
testcase_20 AC 57 ms
6,820 KB
testcase_21 AC 55 ms
6,816 KB
testcase_22 AC 52 ms
6,816 KB
testcase_23 AC 60 ms
6,820 KB
testcase_24 AC 59 ms
6,824 KB
testcase_25 AC 49 ms
6,816 KB
testcase_26 AC 56 ms
6,820 KB
testcase_27 AC 48 ms
6,816 KB
testcase_28 AC 38 ms
6,824 KB
testcase_29 AC 46 ms
6,820 KB
testcase_30 AC 63 ms
6,820 KB
testcase_31 AC 77 ms
6,820 KB
testcase_32 AC 79 ms
6,820 KB
testcase_33 AC 72 ms
6,824 KB
testcase_34 AC 66 ms
6,824 KB
testcase_35 AC 88 ms
6,820 KB
testcase_36 AC 27 ms
6,824 KB
testcase_37 AC 84 ms
6,816 KB
testcase_38 AC 58 ms
6,820 KB
testcase_39 AC 28 ms
6,816 KB
testcase_40 AC 38 ms
6,816 KB
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 33 ms
6,820 KB
testcase_43 AC 46 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//=================================
// Created on: 2018/07/07 18:00:43
//=================================
#include <bits/stdc++.h>
#define show(x) cerr << #x << " = " << x << endl
using namespace std;
using ll = long long;
using ld = long double;
constexpr ll MOD = 1000000007LL;
template <typename T>
constexpr T INF = numeric_limits<T>::max() / 10;
mt19937 mt{random_device{}()};
template <typename T>
int LongestIncreasingSubsequence(const vector<T>& a)
{
    const int n = a.size();
    vector<T> dp(n, INF<T>);
    for (int i = 0; i < n; i++) { *upper_bound(dp.begin(), dp.end(), a[i]) = a[i]; }
    return lower_bound(dp.begin(), dp.end(), INF<T>) - dp.begin();
}
int main()
{
    int N;
    cin >> N;
    vector<ll> A;
    for (ll i = 0, a; i < N; i++) {
        cin >> a;
        if (a > i) { A.push_back(a - i); }
    }
    const int L = LongestIncreasingSubsequence(A);
    cout << N - L << endl;
    return 0;
}
0