結果

問題 No.2930 Larger Mex
ユーザー winguwingu
提出日時 2024-10-12 16:12:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 3,048 ms
コンパイル使用メモリ 248,056 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 16:12:48
合計ジャッジ時間 18,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 5 ms
6,816 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 5 ms
6,816 KB
testcase_08 AC 290 ms
6,820 KB
testcase_09 AC 262 ms
6,820 KB
testcase_10 AC 273 ms
6,820 KB
testcase_11 AC 238 ms
6,816 KB
testcase_12 AC 284 ms
6,816 KB
testcase_13 AC 285 ms
6,820 KB
testcase_14 AC 289 ms
5,504 KB
testcase_15 AC 250 ms
5,376 KB
testcase_16 AC 236 ms
5,248 KB
testcase_17 AC 284 ms
5,504 KB
testcase_18 AC 234 ms
5,376 KB
testcase_19 AC 296 ms
5,632 KB
testcase_20 AC 307 ms
5,504 KB
testcase_21 AC 297 ms
5,504 KB
testcase_22 AC 296 ms
5,504 KB
testcase_23 AC 260 ms
5,376 KB
testcase_24 AC 297 ms
5,504 KB
testcase_25 AC 295 ms
5,632 KB
testcase_26 AC 255 ms
5,504 KB
testcase_27 AC 219 ms
5,376 KB
testcase_28 AC 244 ms
5,376 KB
testcase_29 AC 248 ms
5,376 KB
testcase_30 AC 262 ms
5,376 KB
testcase_31 AC 219 ms
5,248 KB
testcase_32 AC 267 ms
5,376 KB
testcase_33 AC 292 ms
5,504 KB
testcase_34 AC 291 ms
5,504 KB
testcase_35 AC 180 ms
5,248 KB
testcase_36 AC 275 ms
5,504 KB
testcase_37 AC 286 ms
5,504 KB
testcase_38 AC 285 ms
5,504 KB
testcase_39 AC 280 ms
5,504 KB
testcase_40 AC 282 ms
5,632 KB
testcase_41 AC 279 ms
5,376 KB
testcase_42 AC 253 ms
5,504 KB
testcase_43 AC 240 ms
5,376 KB
testcase_44 AC 242 ms
5,504 KB
testcase_45 AC 271 ms
5,376 KB
testcase_46 AC 278 ms
5,248 KB
testcase_47 AC 286 ms
5,248 KB
testcase_48 AC 196 ms
5,248 KB
testcase_49 AC 316 ms
5,248 KB
testcase_50 AC 283 ms
5,504 KB
testcase_51 AC 298 ms
5,632 KB
testcase_52 AC 293 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/modint>
using namespace atcoder;
#ifdef DEFINED_ONLY_IN_LOCAL
#include <dump.hpp>
#define dump(...) cpp_dump(__VA_ARGS__)
#else
#undef dump
#define dump(...)
#endif
#define rep(i, n) for (int i = 0; i < n; i++)
template <class T> istream& operator>>(istream& I, vector<T>& V) { for (T& X : V) I >> X; return I; }

int main() {
    int n, m, mx = 200100;
    cin >> n >> m;
    vector<int> a(n);
    cin >> a;
    if (m == 0) {
        for (int i = 1; i <= n; i++) {
            cout << n - i + 1 << endl;
        }
        return 0;
    }
    vector<int> cnt(mx);
    int r = 0, b = m;
    vector<int> s(n + 10);
    rep(l, n) {
        while (r < n and b > 0) {
            if (cnt[a[r]] == 0 and a[r] < m) {
                b--;
            }
            cnt[a[r]]++;
            r++;
        }
        int len = r - l;
        if (b == 0) {
            s[len]++;
            s[n - l + 1]--;
        }
        if (cnt[a[l]] == 1 and a[l] < m) {
            b++;
        }
        cnt[a[l]]--;
    }
    for (int i = 1; i <= n; i++) {
        s[i] += s[i - 1];
        cout << s[i] << endl;
    }
    return 0;
}
0