結果

問題 No.1734 Decreasing Elements
ユーザー りあんりあん
提出日時 2021-11-05 22:13:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 772 ms / 3,000 ms
コード長 1,137 bytes
コンパイル時間 2,869 ms
コンパイル使用メモリ 219,976 KB
実行使用メモリ 7,932 KB
最終ジャッジ日時 2024-11-06 13:05:33
合計ジャッジ時間 9,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 37 ms
6,832 KB
testcase_08 AC 35 ms
6,896 KB
testcase_09 AC 23 ms
6,884 KB
testcase_10 AC 33 ms
6,896 KB
testcase_11 AC 58 ms
7,024 KB
testcase_12 AC 29 ms
6,820 KB
testcase_13 AC 55 ms
6,916 KB
testcase_14 AC 156 ms
7,712 KB
testcase_15 AC 90 ms
7,200 KB
testcase_16 AC 174 ms
7,668 KB
testcase_17 AC 184 ms
7,620 KB
testcase_18 AC 187 ms
7,648 KB
testcase_19 AC 760 ms
6,816 KB
testcase_20 AC 772 ms
6,820 KB
testcase_21 AC 703 ms
7,792 KB
testcase_22 AC 691 ms
7,932 KB
testcase_23 AC 379 ms
6,816 KB
testcase_24 AC 185 ms
6,816 KB
testcase_25 AC 442 ms
6,816 KB
testcase_26 AC 208 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include<bits/stdc++.h>
using namespace std;

const int M = 998244353;
const long long LM = 1LL << 60;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n;
    // n = 200000;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
        // a[i] = i + 1;
        cin >> a[i];
    }
    vector<vector<int>> vv;
    int SQ = 500;

    vector<int> v = { 0, 200010 };
    int ans = 0;
    for (int i = 0; i < n; ++i) {
        for (auto& x : vv) {
            a[i] -= *prev(upper_bound(x.begin(), x.end(), a[i]));
        }
        a[i] -= *prev(upper_bound(v.begin(), v.end(), a[i]));
        if (a[i] > 0) {
            ++ans;
            vector<int> nex;
            for (int j = 0; j < (int)v.size(); ++j) {
                nex.push_back(v[j]);
                if (j + 1 < (int)v.size() && v[j] + a[i] < v[j + 1]) {
                    nex.push_back(v[j] + a[i]);
                }
            }
            v = nex;
        }
        if ((i + 1) % SQ == 0) {
            vv.push_back(v);
            v = { 0, 200010 };
        }
    }
    cout << ans << '\n';
    return 0;
}

0