結果

問題 No.1675 Strange Minimum Query
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-10 21:43:35
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 4,086 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 214,964 KB
実行使用メモリ 20,416 KB
最終ジャッジ日時 2023-09-02 16:35:40
合計ジャッジ時間 16,367 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 318 ms
8,588 KB
testcase_04 AC 311 ms
11,828 KB
testcase_05 AC 28 ms
10,712 KB
testcase_06 AC 375 ms
9,608 KB
testcase_07 AC 425 ms
12,256 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 185 ms
14,024 KB
testcase_11 AC 61 ms
11,696 KB
testcase_12 AC 201 ms
15,836 KB
testcase_13 AC 317 ms
20,152 KB
testcase_14 AC 417 ms
20,124 KB
testcase_15 AC 345 ms
20,412 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 79 ms
7,152 KB
testcase_18 AC 116 ms
7,764 KB
testcase_19 AC 172 ms
15,512 KB
testcase_20 AC 390 ms
14,740 KB
testcase_21 AC 334 ms
17,052 KB
testcase_22 AC 443 ms
18,516 KB
testcase_23 AC 312 ms
10,248 KB
testcase_24 AC 313 ms
12,912 KB
testcase_25 AC 208 ms
8,780 KB
testcase_26 AC 112 ms
9,048 KB
testcase_27 AC 305 ms
17,228 KB
testcase_28 AC 158 ms
12,648 KB
testcase_29 AC 113 ms
14,164 KB
testcase_30 AC 105 ms
9,392 KB
testcase_31 AC 421 ms
12,208 KB
testcase_32 AC 567 ms
20,060 KB
testcase_33 AC 580 ms
20,416 KB
testcase_34 AC 579 ms
20,060 KB
testcase_35 AC 480 ms
20,104 KB
testcase_36 AC 478 ms
20,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<n;i++)
#define repl(i,l,r) for(ll i=(l);i<(r);i++)
#define per(i,n) for(ll i=(n)-1;i>=0;i--)
#define perl(i,r,l) for(ll i=r-1;i>=l;i--)
#define fi first
#define se second
#define pb push_back
#define ins insert
#define pqueue(x) priority_queue<x,vector<x>,greater<x>>
#define all(x) (x).begin(),(x).end()
#define CST(x) cout<<fixed<<setprecision(x)
#define vtpl(x,y,z) vector<tuple<x,y,z>>
#define rev(x) reverse(x);
using ll=long long;
using vl=vector<ll>;
using vvl=vector<vector<ll>>;
using pl=pair<ll,ll>;
using vpl=vector<pl>;
using vvpl=vector<vpl>;
const ll MOD=1000000007;
const ll MOD9=998244353;
const int inf=1e9;
const ll INF=4e17;
const ll dy[9]={0,1,-1,0,1,1,-1,-1,0};
const ll dx[9]={1,0,0,-1,1,-1,1,-1,0};
template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}


template <typename X, typename M>
struct SegTreeLazy {//遅延セグ木 単位元に注意(updateなら選ばれない数、affineなら(1,0))
    using FX = function<X(X, X)>;
    using FA = function<X(X, M, int, int)>;
    using FM = function<M(M, M)>;
    int n;
    FX fx;
    FA fa;
    FM fm;
    const X ex;
    const M em;
    vector<X> dat;
    vector<M> lazy;
    SegTreeLazy(int n_, FX fx_, FA fa_, FM fm_, X ex_, M em_)
        : n(), fx(fx_), fa(fa_), fm(fm_), ex(ex_), em(em_), dat(n_ * 4, ex), lazy(n_ * 4, em) {
        int x = 1;
        while (n_ > x) x *= 2;
        n = x;
    }
    void set(int i, X x) { dat[i + n - 1] = x; }
    void build() {
        for (int k = n - 2; k >= 0; k--) dat[k] = fx(dat[2 * k + 1], dat[2 * k + 2]);
    }
    /* lazy eval */
    void eval(int k, int l, int r) {
        if (lazy[k] == em) return;  // 更新するものが無ければ終了
        if (k < n - 1) {            // 葉でなければ子に伝搬
            lazy[k * 2 + 1] = fm(lazy[k * 2 + 1], lazy[k]);
            lazy[k * 2 + 2] = fm(lazy[k * 2 + 2], lazy[k]);
        }
        // 自身を更新
        dat[k] = fa(dat[k],lazy[k],l,r);//fa(dat[k], fp(lazy[k], len));
        lazy[k] = em;
    }
    void update(int a, int b, M x, int k, int l, int r) {
        eval(k, l, r);
        if (a <= l && r <= b) {  // 完全に内側の時
            lazy[k] = fm(lazy[k], x);
            eval(k,l,r);
        } else if (a < r && l < b) {                     // 一部区間が被る時
            update(a, b, x, k * 2 + 1, l, (l + r) / 2);  // 左の子
            update(a, b, x, k * 2 + 2, (l + r) / 2, r);  // 右の子
            dat[k] = fx(dat[k * 2 + 1], dat[k * 2 + 2]);
        }
    }
    void update(int a, int b, M x) { update(a, b, x, 0, 0, n); }
    X query_sub(int a, int b, int k, int l, int r) {
        eval(k,l,r);
        if (r <= a || b <= l) {  // 完全に外側の時
            return ex;
        } else if (a <= l && r <= b) {  // 完全に内側の時
            return dat[k];
        } else {  // 一部区間が被る時
            X vl = query_sub(a, b, k * 2 + 1, l, (l + r) / 2);
            X vr = query_sub(a, b, k * 2 + 2, (l + r) / 2, r);
            return fx(vl, vr);
        }
    }
    X query(int a, int b) { return query_sub(a, b, 0, 0, n); }
    X operator[](int i){
        return query(i,i+1);
    }
};

int main(){
    ll n,q;cin >> n >> q;
    auto fx=[](ll a,ll b){return min(a,b);};
    auto fa=[](ll a,ll b,int l,int r){return b;};
    auto fm=[](ll a,ll b){return b;};
    SegTreeLazy<ll,ll> st(n,fx,fa,fm,inf,-1);
    vector<pair<ll,pl>> qs(q);
    rep(i,q){
        ll l,r,v;cin >> l >> r >> v;l--;
        qs[i]={v,{l,r}};
    }
    sort(all(qs));
    for(auto [p,ls]:qs){
        st.update(ls.first,ls.second,p);
    }
    for(auto [p,ls]:qs){
        if(st.query(ls.first,ls.second)!=p){
            cout << -1 << endl;return 0;
        }
    }
    rep(i,n){
        if(i)cout << " ";
        cout << st[i];
    }
    cout << endl;
}       

0