結果

問題 No.1675 Strange Minimum Query
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-11 13:27:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,218 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 216,196 KB
実行使用メモリ 10,344 KB
最終ジャッジ日時 2024-06-11 13:27:33
合計ジャッジ時間 10,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 128 ms
6,376 KB
testcase_04 AC 113 ms
7,400 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 151 ms
6,748 KB
testcase_07 AC 161 ms
8,300 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 75 ms
8,040 KB
testcase_11 AC 24 ms
6,912 KB
testcase_12 AC 82 ms
8,196 KB
testcase_13 AC 135 ms
10,216 KB
testcase_14 AC 173 ms
10,216 KB
testcase_15 AC 159 ms
10,344 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 45 ms
5,376 KB
testcase_19 AC 64 ms
7,656 KB
testcase_20 AC 142 ms
8,936 KB
testcase_21 AC 126 ms
8,552 KB
testcase_22 AC 185 ms
9,320 KB
testcase_23 AC 134 ms
6,376 KB
testcase_24 AC 115 ms
6,760 KB
testcase_25 AC 87 ms
5,612 KB
testcase_26 AC 43 ms
5,480 KB
testcase_27 AC 114 ms
8,300 KB
testcase_28 AC 59 ms
7,400 KB
testcase_29 AC 48 ms
7,168 KB
testcase_30 AC 41 ms
5,632 KB
testcase_31 AC 172 ms
7,780 KB
testcase_32 AC 222 ms
10,212 KB
testcase_33 AC 218 ms
10,220 KB
testcase_34 AC 242 ms
10,216 KB
testcase_35 AC 207 ms
10,088 KB
testcase_36 AC 204 ms
10,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/lazysegtree>
using namespace std;
using namespace atcoder;
int op(int a, int b) { return min(a, b); }
int e() { return 1e9; }
int mapping(int f, int x) {
    if (f == -1) return x;
    return f;
}
int composition(int f, int g) {
    if (f == -1) return g;
    return f;
}
int id() { return -1; }
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, q;
    cin >> n >> q;
    vector<tuple<int, int, int>> lrb;
    for (int i = 0; i < q; i++) {
        int l, r, b;
        cin >> l >> r >> b;
        l--;
        lrb.push_back({l, r, b});
    }
    vector<int> idx(q);
    iota(idx.begin(), idx.end(), 0);
    sort(idx.begin(), idx.end(),
         [&](int i, int j) { return get<2>(lrb[i]) < get<2>(lrb[j]); });
    lazy_segtree<int, op, e, int, mapping, composition, id> seg(n);
    for (int i : idx) {
        auto [l, r, b] = lrb[i];
        seg.apply(l, r, b);
    }
    for (auto [l, r, b] : lrb) {
        if (seg.prod(l, r) != b) {
            cout << -1 << endl;
            return 0;
        }
    }
    for (int i = 0; i < n; i++) {
        cout << seg.get(i) << (i == n - 1 ? '\n' : ' ');
    }
}
0