結果

問題 No.711 競技レーティング単調増加
ユーザー PachicobuePachicobue
提出日時 2018-07-07 18:13:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 204,268 KB
実行使用メモリ 6,484 KB
最終ジャッジ日時 2024-07-05 02:47:43
合計ジャッジ時間 6,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 56 ms
5,376 KB
testcase_19 AC 55 ms
5,376 KB
testcase_20 AC 58 ms
5,376 KB
testcase_21 AC 60 ms
5,376 KB
testcase_22 AC 55 ms
5,376 KB
testcase_23 AC 63 ms
5,376 KB
testcase_24 AC 62 ms
5,376 KB
testcase_25 AC 52 ms
5,376 KB
testcase_26 AC 57 ms
5,376 KB
testcase_27 AC 53 ms
5,376 KB
testcase_28 AC 42 ms
5,376 KB
testcase_29 AC 50 ms
5,376 KB
testcase_30 AC 67 ms
5,840 KB
testcase_31 AC 81 ms
5,844 KB
testcase_32 AC 85 ms
6,224 KB
testcase_33 AC 78 ms
6,352 KB
testcase_34 AC 72 ms
6,096 KB
testcase_35 AC 79 ms
6,484 KB
testcase_36 AC 30 ms
5,376 KB
testcase_37 AC 87 ms
6,228 KB
testcase_38 AC 61 ms
6,052 KB
testcase_39 AC 31 ms
5,376 KB
testcase_40 AC 41 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 35 ms
5,376 KB
testcase_43 AC 51 ms
5,460 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