結果

問題 No.1675 Strange Minimum Query
ユーザー ripityripity
提出日時 2022-05-12 00:12:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 1,437 bytes
コンパイル時間 4,225 ms
コンパイル使用メモリ 280,664 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-07-19 10:13:43
合計ジャッジ時間 15,821 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 300 ms
5,760 KB
testcase_04 AC 275 ms
6,784 KB
testcase_05 AC 21 ms
5,504 KB
testcase_06 AC 352 ms
6,016 KB
testcase_07 AC 376 ms
7,424 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 163 ms
7,680 KB
testcase_11 AC 44 ms
6,912 KB
testcase_12 AC 176 ms
7,808 KB
testcase_13 AC 296 ms
9,600 KB
testcase_14 AC 385 ms
9,472 KB
testcase_15 AC 335 ms
9,472 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 60 ms
5,376 KB
testcase_18 AC 86 ms
5,376 KB
testcase_19 AC 119 ms
7,424 KB
testcase_20 AC 271 ms
8,320 KB
testcase_21 AC 237 ms
8,192 KB
testcase_22 AC 324 ms
8,832 KB
testcase_23 AC 271 ms
6,016 KB
testcase_24 AC 220 ms
6,656 KB
testcase_25 AC 165 ms
5,376 KB
testcase_26 AC 80 ms
5,504 KB
testcase_27 AC 212 ms
8,192 KB
testcase_28 AC 110 ms
7,424 KB
testcase_29 AC 79 ms
7,168 KB
testcase_30 AC 76 ms
5,632 KB
testcase_31 AC 334 ms
7,168 KB
testcase_32 AC 420 ms
9,600 KB
testcase_33 AC 420 ms
9,472 KB
testcase_34 AC 421 ms
9,472 KB
testcase_35 AC 410 ms
9,472 KB
testcase_36 AC 409 ms
9,600 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{222};

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