結果

問題 No.1675 Strange Minimum Query
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-11 13:26:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,214 bytes
コンパイル時間 2,967 ms
コンパイル使用メモリ 217,764 KB
実行使用メモリ 10,964 KB
最終ジャッジ日時 2024-06-11 13:26:35
合計ジャッジ時間 11,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 125 ms
6,376 KB
testcase_04 AC 139 ms
7,276 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 146 ms
6,944 KB
testcase_07 AC 153 ms
8,168 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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) << " ";
    }
    cout << endl;
}
0