結果

問題 No.1675 Strange Minimum Query
ユーザー みここみここ
提出日時 2021-09-10 22:01:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 1,163 ms
コンパイル使用メモリ 86,040 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-12 00:05:41
合計ジャッジ時間 12,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,632 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 4 ms
5,888 KB
testcase_03 AC 238 ms
6,016 KB
testcase_04 AC 217 ms
7,424 KB
testcase_05 AC 20 ms
7,552 KB
testcase_06 AC 285 ms
6,016 KB
testcase_07 AC 300 ms
7,296 KB
testcase_08 AC 4 ms
5,760 KB
testcase_09 AC 5 ms
5,888 KB
testcase_10 AC 141 ms
9,216 KB
testcase_11 AC 38 ms
9,216 KB
testcase_12 AC 155 ms
9,344 KB
testcase_13 AC 293 ms
9,472 KB
testcase_14 AC 338 ms
9,472 KB
testcase_15 AC 305 ms
9,472 KB
testcase_16 AC 3 ms
5,888 KB
testcase_17 AC 57 ms
6,656 KB
testcase_18 AC 83 ms
6,656 KB
testcase_19 AC 106 ms
9,344 KB
testcase_20 AC 249 ms
9,216 KB
testcase_21 AC 218 ms
9,344 KB
testcase_22 AC 289 ms
9,344 KB
testcase_23 AC 240 ms
6,656 KB
testcase_24 AC 211 ms
7,552 KB
testcase_25 AC 154 ms
6,656 KB
testcase_26 AC 72 ms
7,392 KB
testcase_27 AC 187 ms
9,344 KB
testcase_28 AC 96 ms
9,216 KB
testcase_29 AC 67 ms
9,344 KB
testcase_30 AC 69 ms
7,424 KB
testcase_31 AC 304 ms
7,552 KB
testcase_32 AC 387 ms
9,472 KB
testcase_33 AC 380 ms
9,472 KB
testcase_34 AC 380 ms
9,472 KB
testcase_35 AC 378 ms
9,444 KB
testcase_36 AC 376 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/lazysegtree>
#include <algorithm>
#include <iostream>
using namespace std;
using namespace atcoder;
typedef pair<int, int> P;
typedef pair<int, P> PP;

const int INF = 1000000000;

struct S
{
    int x;
};

S op(S a, S b){
    return S{min(a.x, b.x)};
}

S e(){
    return S{INF};
}

struct F
{
    int f;
};

S mapping(F f, S a){
    if(f.f == 0) return a;
    return S{f.f};
}

F composition(F f, F g){
    if(f.f == 0) return g;
    return f;
}

F id(){
    return F{0};
}

int main()
{
    int n, q;
    cin >> n >> q;
    PP p[200005];
    for(int i = 0; i < q; i++){
        int l, r, b;
        cin >> l >> r >> b;
        l--;
        p[i] = PP(b, P(l, r));
    }
    sort(p, p + q);
    lazy_segtree<S, op, e, F, mapping, composition, id> seg(n);
    for(int i = 0; i < q; i++){
        seg.apply(p[i].second.first, p[i].second.second, F{p[i].first});
    }
    for(int i = 0; i < q; i++){
        if(seg.prod(p[i].second.first, p[i].second.second).x != p[i].first){
            cout << -1 << endl;
            return 0;
        }
    }
    for(int i = 0; i < n; i++){
        cout << seg.get(i).x;
        if(i < n - 1) cout << " ";
    }
    cout << endl;
}
0