結果

問題 No.1675 Strange Minimum Query
ユーザー yunix91201367yunix91201367
提出日時 2021-09-10 22:41:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,825 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 184,260 KB
実行使用メモリ 21,952 KB
最終ジャッジ日時 2024-06-12 01:59:42
合計ジャッジ時間 9,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 61 ms
12,004 KB
testcase_04 AC 53 ms
13,568 KB
testcase_05 AC 8 ms
7,680 KB
testcase_06 AC 73 ms
13,312 KB
testcase_07 AC 77 ms
16,212 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 92 ms
14,988 KB
testcase_11 AC 31 ms
11,760 KB
testcase_12 AC 101 ms
15,488 KB
testcase_13 AC 149 ms
21,832 KB
testcase_14 AC 197 ms
21,912 KB
testcase_15 AC 177 ms
21,860 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 35 ms
6,912 KB
testcase_18 AC 52 ms
7,680 KB
testcase_19 AC 73 ms
14,076 KB
testcase_20 AC 160 ms
17,664 KB
testcase_21 AC 143 ms
17,152 KB
testcase_22 AC 189 ms
19,124 KB
testcase_23 AC 144 ms
12,032 KB
testcase_24 AC 130 ms
13,184 KB
testcase_25 AC 93 ms
9,856 KB
testcase_26 AC 50 ms
9,216 KB
testcase_27 AC 126 ms
16,512 KB
testcase_28 AC 68 ms
13,312 KB
testcase_29 AC 50 ms
12,856 KB
testcase_30 AC 47 ms
9,088 KB
testcase_31 AC 185 ms
15,872 KB
testcase_32 AC 246 ms
21,828 KB
testcase_33 AC 241 ms
21,888 KB
testcase_34 AC 248 ms
21,848 KB
testcase_35 AC 225 ms
21,952 KB
testcase_36 AC 217 ms
21,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
#define int long long
using namespace std;
using namespace atcoder;
using vec_int = vector<int>;
using vec_ii = vector<vec_int>;
using vec_iii = vector<vec_ii>;
using vec_iiii = vector<vec_iii>;
using P = pair<int,int>;
using T = tuple<int,int,int>;
using ll = long long;
using ld = long double;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)

void cout_line(vector<int> &a){
    for(int i=0;i<a.size();i++){
        if(i<a.size()-1){
            cout<<a.at(i)<<" ";
        }else{
            cout<<a.at(i)<<endl;
        }
    }
}

int op(int a, int b){
    return min(a, b);
}
int e() {
    return INT_MAX;
}
int mapping(int f, int x){
    return max(f, x);
}
int composition(int a, int b){
    return max(a, b);
}

int id(){
    return -1;
}




signed main(){
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int N, Q; cin>>N>>Q;
    vec_int l(Q), r(Q), B(Q);
    rep(i, Q)cin>>l.at(i)>>r.at(i)>>B.at(i);
    vector<T> Qs(Q);
    rep(i, Q){
        Qs.at(i) = make_tuple(B.at(i), l.at(i), r.at(i));
    }
    sort(Qs.begin(), Qs.end());
    reverse(Qs.begin(), Qs.end());

    vec_int a(N, -1);
    lazy_segtree<int, op, e, int, mapping, composition, id> seg(a);

    rep(i, Q){
        int b, L, R; tie(b, L, R) = Qs.at(i);
        L--; R--;
        int temp = seg.prod(L, R+1);
        /*
        cout<<i<<" "<<L<<" "<<R<<" "<<temp<<endl;
        for(int j=0;j<5;j++){
            cout<<"i="<<i<<" j="<<j<<" "<<seg.get(j)<<endl;
        }
        */
        if(temp!=-1&&temp>b){
            cout<<-1<<endl;
            return 0;
        }
        seg.apply(L, R+1, b);
    }
    vec_int ans(N);
    rep(i,N){
        int num = seg.get(i);
        if(num==-1)num=4545;
        ans.at(i) = num;
    }
    cout_line(ans);






    return 0;
}
0