結果

問題 No.2930 Larger Mex
ユーザー hanagehanage
提出日時 2024-10-12 16:54:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 1,649 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 207,512 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-10-12 16:55:41
合計ジャッジ時間 23,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 370 ms
6,784 KB
testcase_09 AC 345 ms
6,784 KB
testcase_10 AC 374 ms
6,912 KB
testcase_11 AC 310 ms
6,144 KB
testcase_12 AC 407 ms
10,496 KB
testcase_13 AC 407 ms
7,936 KB
testcase_14 AC 436 ms
12,928 KB
testcase_15 AC 351 ms
6,528 KB
testcase_16 AC 362 ms
6,528 KB
testcase_17 AC 423 ms
6,656 KB
testcase_18 AC 384 ms
6,272 KB
testcase_19 AC 466 ms
8,320 KB
testcase_20 AC 423 ms
7,936 KB
testcase_21 AC 424 ms
7,296 KB
testcase_22 AC 422 ms
11,520 KB
testcase_23 AC 383 ms
7,424 KB
testcase_24 AC 405 ms
6,656 KB
testcase_25 AC 429 ms
15,104 KB
testcase_26 AC 352 ms
8,740 KB
testcase_27 AC 298 ms
6,800 KB
testcase_28 AC 333 ms
7,736 KB
testcase_29 AC 327 ms
7,424 KB
testcase_30 AC 328 ms
5,760 KB
testcase_31 AC 263 ms
5,888 KB
testcase_32 AC 324 ms
7,552 KB
testcase_33 AC 347 ms
6,144 KB
testcase_34 AC 402 ms
7,168 KB
testcase_35 AC 240 ms
7,552 KB
testcase_36 AC 358 ms
5,760 KB
testcase_37 AC 393 ms
9,344 KB
testcase_38 AC 382 ms
9,472 KB
testcase_39 AC 382 ms
6,912 KB
testcase_40 AC 405 ms
7,040 KB
testcase_41 AC 330 ms
7,040 KB
testcase_42 AC 332 ms
6,648 KB
testcase_43 AC 337 ms
6,400 KB
testcase_44 AC 338 ms
7,580 KB
testcase_45 AC 334 ms
7,552 KB
testcase_46 AC 370 ms
5,632 KB
testcase_47 AC 382 ms
5,376 KB
testcase_48 AC 261 ms
5,248 KB
testcase_49 AC 393 ms
5,504 KB
testcase_50 AC 397 ms
6,252 KB
testcase_51 AC 399 ms
11,008 KB
testcase_52 AC 437 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/fenwicktree>
using namespace atcoder;

int main() {
    int N, M;
    cin >> N >> M;
    vector<int> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    vector<vector<int>> v(M);
    for (int i = 0; i < N; i++) {
        if (A[i] < M) {
            v[A[i]].push_back(i);
        }
    }
    fenwick_tree<int> ft(N);
    for (int i = 0; i < M; i++) {
        if (v[i].empty()) {
            continue;
        }
        ft.add(v[i][0], 1);
    }
    vector<int> imos(N + 2, 0);
    for (int i = 0; i < N; i++) {
        int le = i + 1, ri = N;
        int mn = N + 1;
        while (le <= ri) {
            int mid = le + (ri - le) / 2;
            if (ft.sum(i, mid) == M) {
                ri = mid - 1;
                mn = min(mn, mid);
            } else {
                le = mid + 1;
            }
        }
        if (mn != N + 1) {
            imos[mn - i]++;
            imos[N - i+ 1]--;
        }
        #ifdef hahna
        for (int j = 0; j < N; j++) {
            cout << ft.sum(j, j + 1) << " \n"[j + 1 == N];
        }
        cout << "###" << mn << endl;
        #endif
        if (A[i] >= M) continue;
        auto ub = upper_bound(v[A[i]].begin(), v[A[i]].end(), i);
        if (ub != v[A[i]].end()) {
            ft.add(*ub, 1);
        }
    }
    for (int i = 1; i <= N; i++) {
        imos[i + 1] += imos[i];
    }
    for (int i = 1; i <= N; i++) {
        cout << imos[i] << endl;
    }
    // fenwick tree de l ikou ni hajimete ataiga deta basyowo kanri
    // l wo hidari kara miteitte waga m ni naru tokoro wo nibutan de
    return 0;
}
0