結果

問題 No.1675 Strange Minimum Query
ユーザー ripityripity
提出日時 2022-05-12 00:15:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 1,436 bytes
コンパイル時間 4,808 ms
コンパイル使用メモリ 281,412 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-07-19 10:15:04
合計ジャッジ時間 18,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 327 ms
5,632 KB
testcase_04 AC 305 ms
6,784 KB
testcase_05 AC 25 ms
5,376 KB
testcase_06 AC 383 ms
6,016 KB
testcase_07 AC 429 ms
7,424 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 182 ms
7,680 KB
testcase_11 AC 50 ms
6,912 KB
testcase_12 AC 201 ms
7,936 KB
testcase_13 AC 336 ms
9,600 KB
testcase_14 AC 429 ms
9,600 KB
testcase_15 AC 362 ms
9,600 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 68 ms
5,376 KB
testcase_18 AC 99 ms
5,376 KB
testcase_19 AC 136 ms
7,424 KB
testcase_20 AC 311 ms
8,448 KB
testcase_21 AC 275 ms
8,192 KB
testcase_22 AC 362 ms
8,704 KB
testcase_23 AC 287 ms
6,016 KB
testcase_24 AC 257 ms
6,528 KB
testcase_25 AC 186 ms
5,376 KB
testcase_26 AC 91 ms
5,504 KB
testcase_27 AC 241 ms
8,064 KB
testcase_28 AC 127 ms
7,296 KB
testcase_29 AC 90 ms
7,168 KB
testcase_30 AC 88 ms
5,504 KB
testcase_31 AC 378 ms
7,168 KB
testcase_32 AC 488 ms
9,472 KB
testcase_33 AC 481 ms
9,512 KB
testcase_34 AC 482 ms
9,600 KB
testcase_35 AC 466 ms
9,600 KB
testcase_36 AC 468 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

using namespace atcoder;
using namespace std;

struct S {int x;};
struct F {int y;};

constexpr int inf = 1000000000;
const F ID = F{-1};

S op(S l, S r) {
	return S{min(l.x, r.x)};
}

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

S mapping(F f, S s) {
	if( f.y == ID.y ) return s;
	else return S{f.y};
}

F composition(F f, F g) {
	if( f.y == ID.y ) return F{g};
	else return F{f};
}

F id() {
	return ID;
}

int main() {
    
    int N, Q; cin >> N >> Q;
    bool ng = false;
    vector<S> v(N, S{inf});
    vector<tuple<int, int, int>> query(Q);
    for( int i = 0; i < Q; i++ ) {
        int l, r, b; cin >> l >> r >> b;
        query[i] = make_tuple(b, l, r);
    }
    
    sort(query.begin(), query.end());
    lazy_segtree<S, op, e, F, mapping, composition, id> ls(v);
    
    for( int i = 0; i < Q; i++ ) {
        int b, l, r;
        tie(b, l, r) = query[i];
        ls.apply(l-1, r, F{b});
    }
    
    for( int i = 0; i < Q; i++ ) {
        int b, l, r;
        tie(b, l, r) = query[i];
        S res = ls.prod(l-1, r);
        if( res.x != b ) ng = true;
    }
    
    if(ng) {
        cout << -1 << endl;
    }else {
        for( int i = 0; i < N; i++ ) {
            S res = ls.get(i);
            if( i > 0 ) cout << ' ';
            cout << res.x;
        }
        cout << endl;
    }
    
}
0