結果

問題 No.711 競技レーティング単調増加
ユーザー 道柒道柒
提出日時 2025-01-01 14:23:11
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,834 bytes
コンパイル時間 9,637 ms
コンパイル使用メモリ 166,144 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2025-01-01 14:23:27
合計ジャッジ時間 16,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 155 ms
12,160 KB
testcase_19 AC 154 ms
11,904 KB
testcase_20 AC 161 ms
12,416 KB
testcase_21 AC 172 ms
12,928 KB
testcase_22 AC 149 ms
12,160 KB
testcase_23 AC 189 ms
13,312 KB
testcase_24 AC 184 ms
13,184 KB
testcase_25 AC 152 ms
11,648 KB
testcase_26 AC 176 ms
12,288 KB
testcase_27 AC 144 ms
11,648 KB
testcase_28 AC 24 ms
6,820 KB
testcase_29 AC 27 ms
6,816 KB
testcase_30 AC 171 ms
14,464 KB
testcase_31 AC 250 ms
15,744 KB
testcase_32 AC 267 ms
16,384 KB
testcase_33 AC 123 ms
10,368 KB
testcase_34 AC 112 ms
9,728 KB
testcase_35 AC 125 ms
10,752 KB
testcase_36 AC 15 ms
6,816 KB
testcase_37 AC 243 ms
22,912 KB
testcase_38 AC 228 ms
21,760 KB
testcase_39 AC 70 ms
8,576 KB
testcase_40 AC 72 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 12 ms
6,816 KB
testcase_43 AC 160 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using i64 = long long;
using l64 = long double;

template<typename T>
struct Fenwick {
    int n;
    std::vector<T> a;

    Fenwick(int n_ = 0) {
        init(n_);
    }

    void init(int n_) {
        n = n_;
        a.assign(n + 5, T{});
    }

    void add(int x, const T &v) {
        for (int i = x; i <= n; i += i & -i) {
            a[i] = a[i] + v;
        }
    }

    T sum(int x) {
        T ans{};
        for (int i = x; i > 0; i -= i & -i) {
            ans = ans + a[i];
        }
        return ans;
    }

    T rangeSum(int l, int r) {
        return sum(r) - sum(l);
    }

    int select(const T &k) {
        int x = 0;
        T cur{};
        for (int i = 1 << std::__lg(n); i; i /= 2) {
            if (x + i <= n && cur + a[x + i] <= k) {
                x += i;
                cur = cur + a[x];
            }
        }
        return x;
    }
};

struct Max {
    int a = 0;

    Max operator+(Max x) const {
        return {std::max(a, x.a)};
    }
};

void DAOQI() {
    int n;
    std::cin >> n;
    std::vector<int> a(n + 1);
    std::set<int> se;
    for (int i = 1; i <= n; i++) {
        std::cin >> a[i];
        if (a[i] >= i) {
            se.insert(a[i] - i);
        }
    }

    std::vector<int> d(se.begin(), se.end());
    std::map<int, int> mp;
    for (int i = 0; i < d.size(); i++) {
        mp[d[i]] = i + 1;
    }
    int res = 0;
    Fenwick<Max> fw(d.size());
    for (int i = 1; i <= n; i++) {
        int x = a[i] - i;
        if (!se.count(x)) continue;
        int q = fw.sum(mp[x]).a;
        res = std::max(res, q + 1);
        fw.add(mp[x], {q + 1});
    }
    std::cout << n - res << "\n";
}

signed main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int T = 1;
    //std::cin >> T;
    while (T--) DAOQI();
    return 0;
}
0