結果

問題 No.318 学学学学学
ユーザー kuc_jacksonkuc_jackson
提出日時 2021-09-04 18:30:54
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,724 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 220,440 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-12-21 08:53:37
合計ジャッジ時間 24,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
13,632 KB
testcase_01 AC 28 ms
15,652 KB
testcase_02 AC 32 ms
13,636 KB
testcase_03 AC 22 ms
14,752 KB
testcase_04 AC 30 ms
13,632 KB
testcase_05 AC 193 ms
18,688 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 681 ms
13,644 KB
testcase_11 AC 201 ms
11,904 KB
testcase_12 AC 134 ms
8,832 KB
testcase_13 AC 112 ms
7,680 KB
testcase_14 AC 97 ms
6,912 KB
testcase_15 AC 80 ms
6,816 KB
testcase_16 AC 60 ms
6,816 KB
testcase_17 TLE -
testcase_18 AC 99 ms
8,832 KB
testcase_19 TLE -
testcase_20 AC 72 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1 ms
15,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;

struct lazysegtree{
    int size = 1;
    vector<int> dat, lazy;
    lazysegtree(int sz){
        int x = 1;
        while(x < sz)x *= 2;
        size = x;
        dat.resize(2 * x - 1);
        lazy.resize(2 * x - 1, -1);
    }
    void eval(int k){
        if(lazy[k] == -1)return;
        dat[k] = lazy[k];
        if(k < size - 1){
            eval(2 * k + 1); eval(2 * k + 2);
            lazy[2 * k + 1] = lazy[k];
            lazy[2 * k + 2] = lazy[k];
        }
        lazy[k] = -1;
    }
    void build(){
        for(int k = 0; k < size - 1; k++)eval(k);
    }
    void update_(int l, int r, int a, int b, int k, int x){
        eval(k);
        if(b <= l || r <= a)return;
        if(l <= a && b <= r){
            lazy[k] = x;
            return;
        }
        update_(l, r, a, (a + b) / 2, 2 * k + 1, x);
        update_(l, r, (a + b) / 2, b, 2 * k + 2, x);
    }
    void update(int l, int r, int x){
        update_(l, r, 0, size, 0, x);
    }
    int get(int k){
        k += size - 1;
        eval(k);
        return dat[k];
    }
};

int main(){
    const int INF = 1e9;
    int N; cin >> N;
    vector<int> a(N);
    map<int, pii> cnt;
    for(int i = 0; i < N; i++){
        cin >> a[i];
        cnt[a[i]] = {INF, -INF};
    }
    for(int i = 0; i < N; i++){
        cnt[a[i]].first = min(cnt[a[i]].first, i);
        cnt[a[i]].second = max(cnt[a[i]].second, i + 1);
    }
    lazysegtree lt(N);
    for(auto mp: cnt){
        int x, l, r; pii p; tie(x, p) = mp; tie(l, r) = p;
        lt.update(l, r, x);
    }
    lt.build();
    for(int i = 0; i < N; i++)cout << lt.get(i) << " ";
    cout << endl;
}
0