結果

問題 No.318 学学学学学
ユーザー kuc_jacksonkuc_jackson
提出日時 2021-09-04 18:32:50
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,767 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 221,496 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-12-21 08:56:56
合計ジャッジ時間 23,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
13,768 KB
testcase_01 AC 26 ms
15,776 KB
testcase_02 AC 32 ms
13,772 KB
testcase_03 AC 21 ms
14,624 KB
testcase_04 AC 29 ms
13,768 KB
testcase_05 AC 181 ms
18,816 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 654 ms
13,760 KB
testcase_11 AC 194 ms
11,904 KB
testcase_12 AC 133 ms
8,832 KB
testcase_13 AC 116 ms
7,936 KB
testcase_14 AC 96 ms
7,040 KB
testcase_15 AC 76 ms
6,820 KB
testcase_16 AC 59 ms
6,820 KB
testcase_17 TLE -
testcase_18 AC 103 ms
8,832 KB
testcase_19 TLE -
testcase_20 AC 67 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
15,652 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;
        if(l == INF || r == -INF)continue;
        lt.update(l, r, x);
    }
    lt.build();
    for(int i = 0; i < N; i++)cout << lt.get(i) << " ";
    cout << endl;
}
0