結果

問題 No.1675 Strange Minimum Query
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-01-16 19:15:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 3,655 bytes
コンパイル時間 1,583 ms
コンパイル使用メモリ 124,888 KB
実行使用メモリ 16,348 KB
最終ジャッジ日時 2023-08-30 02:16:34
合計ジャッジ時間 15,139 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 258 ms
8,084 KB
testcase_04 AC 241 ms
10,320 KB
testcase_05 AC 23 ms
8,044 KB
testcase_06 AC 305 ms
8,692 KB
testcase_07 AC 339 ms
12,028 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 157 ms
12,908 KB
testcase_11 AC 45 ms
12,664 KB
testcase_12 AC 175 ms
12,924 KB
testcase_13 AC 273 ms
16,116 KB
testcase_14 AC 346 ms
16,348 KB
testcase_15 AC 289 ms
15,940 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 64 ms
5,764 KB
testcase_18 AC 92 ms
5,980 KB
testcase_19 AC 132 ms
12,616 KB
testcase_20 AC 296 ms
14,124 KB
testcase_21 AC 264 ms
13,752 KB
testcase_22 AC 352 ms
14,740 KB
testcase_23 AC 263 ms
8,288 KB
testcase_24 AC 245 ms
9,648 KB
testcase_25 AC 169 ms
7,168 KB
testcase_26 AC 88 ms
7,896 KB
testcase_27 AC 239 ms
13,184 KB
testcase_28 AC 123 ms
12,352 KB
testcase_29 AC 85 ms
12,752 KB
testcase_30 AC 85 ms
7,784 KB
testcase_31 AC 348 ms
11,684 KB
testcase_32 AC 465 ms
16,340 KB
testcase_33 AC 458 ms
15,968 KB
testcase_34 AC 460 ms
16,144 KB
testcase_35 AC 407 ms
16,032 KB
testcase_36 AC 403 ms
16,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>

//https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_2_H

using namespace std;

template<class S, S (*op)(S, S), S (*e)(),
         class F, S (*mapping)(F, S), F (*composition)(F, F), F (*id)()>struct LazySegTree {
    vector<S> seg;
    vector<F> lazy;
    long long N = 1;

    LazySegTree (long long n) : LazySegTree(vector<S>(n, e())) {}
    LazySegTree (const vector<S> &v){
        long long n = v.size();
        while (N < n) N *= 2;
        seg.resize(N*2-1, e());
        lazy.resize(N*2-1, id());
        for (long long i=0; i<n; i++) seg[i+N-1] = v[i];
        for (long long i=N-2; i>=0; i--){
            seg[i] = op(seg[i*2+1], seg[i*2+2]);
        }
    }

    void eval (long long idx, long long bitl, long long bitr){
        if (lazy[idx] != id()){
            seg[idx] = mapping(lazy[idx], seg[idx]);
            if (bitl != bitr){
                lazy[2*idx+1] = composition(lazy[idx], lazy[2*idx+1]);
                lazy[2*idx+2] = composition(lazy[idx], lazy[2*idx+2]);
            }
            lazy[idx] = id();
        }
    }

    //a[i] -> f(a[i]) for l<=i<=r
    void set (long long l, long long r, F val){
        _set(l, r, val, 0, 0, N-1);
    }

    void _set (long long l, long long r, F val, long long idx, long long bitl, long long bitr){
        eval(idx, bitl, bitr);

        if (r < bitl || l > bitr) return;
        if (l <= bitl && bitr <= r){
            lazy[idx] = composition(lazy[idx], val);
            eval(idx, bitl, bitr);
        }
        else{
            long long bitm = (bitl+bitr)/2;
            _set(l, r, val, idx*2+1, bitl, bitm);
            _set(l, r, val, idx*2+2, bitm+1, bitr);
            seg[idx] = op(seg[idx*2+1], seg[idx*2+2]);
        }
    }

    //op(a[l], ..., a[r])
    S prod (long long l, long long r) {
        return _prod(l, r, 0, 0, N-1);
    }

    S all_prod() const{
        return seg[0];
    }

    S _prod (long long l, long long r, long long idx, long long bitl, long long bitr) {
        if (r < bitl || l > bitr) return e();
        eval(idx, bitl, bitr);
        if (l <= bitl && bitr <= r) return seg[idx];
        long long bitm = (bitl+bitr)/2;
        return op(_prod(l, r, idx*2+1, bitl, bitm), _prod(l, r, idx*2+2, bitm+1, bitr));
    }

    S get (long long i) const{
        return seg[i+N-1];
    }

    void show() const{
        for (int i=0; i<N*2-1; i++) cout << seg[i] << " ";
        for (int i=0; i<N*2-1; i++) cout << lazy[i] << " ";
    }
};

using S = long long;
using F = long long;
F ID = -1; S INF = 1e9;
S op(S a, S b){return min(a, b);}
S e() {return INF;}
S mapping(F f, S x){
    if (f == ID) return x;
    else return f;
}
F composition(F f, F g){
    if (f == ID) return g;
    else return f;
}
F id() {return ID;}

int main(){

    long long N, Q, b, l, r;
    cin >> N >> Q;
    LazySegTree<S, op, e, F, mapping, composition, id> tree(N);
    vector<tuple<long long, long long, long long>> BLR(Q);
    for (int i=0; i<Q; i++){
        cin >> l >> r >> b;
        l--; r--;
        BLR[i] = {b, l, r};
    }
    sort(BLR.begin(), BLR.end());

    for (int i=0; i<Q; i++){
        tie(b, l, r) = BLR[i];
        tree.set(l, r, b);
    }

    for (int i=0; i<Q; i++){
        tie(b, l, r) = BLR[i];
        if (tree.prod(l, r) != b){
            cout << -1 << endl;
            return 0;
        }
    }

    for (int i=0; i<N-1; i++) cout << tree.prod(i, i) << " ";
    cout << tree.prod(N-1, N-1) << endl;

    return 0;
}
0