結果

問題 No.2930 Larger Mex
ユーザー VvyLwVvyLw
提出日時 2024-10-14 23:15:05
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,432 bytes
コンパイル時間 3,747 ms
コンパイル使用メモリ 135,612 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-10-14 23:15:19
合計ジャッジ時間 11,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 35 ms
5,248 KB
testcase_09 AC 41 ms
5,248 KB
testcase_10 AC 36 ms
5,248 KB
testcase_11 AC 27 ms
5,248 KB
testcase_12 AC 108 ms
10,496 KB
testcase_13 AC 56 ms
6,400 KB
testcase_14 AC 153 ms
14,464 KB
testcase_15 AC 28 ms
5,248 KB
testcase_16 AC 32 ms
5,248 KB
testcase_17 AC 36 ms
5,248 KB
testcase_18 AC 27 ms
5,248 KB
testcase_19 AC 60 ms
6,656 KB
testcase_20 AC 50 ms
5,888 KB
testcase_21 AC 42 ms
5,504 KB
testcase_22 AC 120 ms
10,368 KB
testcase_23 AC 51 ms
6,016 KB
testcase_24 AC 32 ms
5,248 KB
testcase_25 AC 163 ms
13,440 KB
testcase_26 AC 61 ms
10,240 KB
testcase_27 AC 33 ms
6,656 KB
testcase_28 AC 44 ms
7,936 KB
testcase_29 AC 41 ms
7,424 KB
testcase_30 AC 49 ms
5,632 KB
testcase_31 AC 50 ms
6,400 KB
testcase_32 AC 79 ms
9,472 KB
testcase_33 AC 57 ms
6,400 KB
testcase_34 AC 49 ms
5,888 KB
testcase_35 AC 55 ms
7,040 KB
testcase_36 AC 33 ms
5,248 KB
testcase_37 AC 83 ms
8,576 KB
testcase_38 AC 54 ms
8,320 KB
testcase_39 AC 41 ms
6,016 KB
testcase_40 AC 44 ms
6,016 KB
testcase_41 AC 36 ms
5,888 KB
testcase_42 AC 30 ms
5,504 KB
testcase_43 AC 28 ms
5,248 KB
testcase_44 AC 43 ms
7,552 KB
testcase_45 AC 40 ms
7,168 KB
testcase_46 AC 33 ms
5,248 KB
testcase_47 AC 33 ms
5,248 KB
testcase_48 AC 24 ms
5,248 KB
testcase_49 AC 34 ms
5,248 KB
testcase_50 AC 33 ms
5,248 KB
testcase_51 AC 102 ms
9,728 KB
testcase_52 AC 189 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <ranges>
#include <vector>
#include <set>
#include <algorithm>
namespace man {

}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    using namespace std::views;
    int n, m;
    std::cin >> n >> m;
    std::vector<int> a(n), cnt(m + 1), ret(n);
    for(auto &e: a) {
        std::cin >> e;
    }
    std::ranges::transform(a, a.begin(), [m](const int x) -> int { return std::min(m, x); });
    dump(a);
    if(m == 0) {
        for(const auto i: iota(0, n)) {
            std::cout << n - i << '\n';
        }
        std::exit(0);
    }
    std::set<int> mx;
    for(const auto i: iota(0, m + 2)) {
        mx.emplace(i);
    }
    for(int l = 0, r = 0; r < n; ++r) {
        cnt[a[r]]++;
        mx.erase(a[r]);
        while(l <= r) {
            if(*mx.cbegin() < m) {
                ret[r - l]++;
                break;
            }
            if(--cnt[a[l]] == 0) {
                mx.emplace(a[l]);
            }
            l++;
        }
    }
    for(const auto i: iota(1, n) | reverse) {
        ret[i - 1] += ret[i];
    }
    dump(ret);
    for(const auto i: iota(0, n)) {
        std::cout << n - (i + ret[i]) << '\n';
    }
}
0