結果

問題 No.1675 Strange Minimum Query
ユーザー sten_sansten_san
提出日時 2021-09-10 21:59:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,892 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 221,348 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-06-11 23:59:18
合計ジャッジ時間 10,815 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 76 ms
6,528 KB
testcase_04 AC 84 ms
9,216 KB
testcase_05 AC 41 ms
9,344 KB
testcase_06 AC 85 ms
7,040 KB
testcase_07 AC 98 ms
8,960 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 142 ms
15,744 KB
testcase_14 AC 172 ms
15,744 KB
testcase_15 AC 160 ms
15,744 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 32 ms
6,400 KB
testcase_18 AC 41 ms
6,656 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 141 ms
14,592 KB
testcase_23 AC 84 ms
7,936 KB
testcase_24 AC 97 ms
10,624 KB
testcase_25 AC 60 ms
7,296 KB
testcase_26 WA -
testcase_27 AC 118 ms
14,208 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 106 ms
9,088 KB
testcase_32 AC 172 ms
15,744 KB
testcase_33 AC 174 ms
15,744 KB
testcase_34 AC 176 ms
15,744 KB
testcase_35 AC 182 ms
15,744 KB
testcase_36 AC 184 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct iofast_t {
    iofast_t() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} iofast;

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

template <typename T, typename Compare = less<T>>
T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); }
template <typename T, typename Compare = less<T>>
T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); }

#include <atcoder/segtree>

constexpr int inf = INT_MAX / 2;

int op(int x, int y) {
    return min(x, y);
}

int elem() {
    return inf;
}

using segtree = atcoder::segtree<int, op, elem>;

int main() {
    int n, q; cin >> n >> q;
    auto query = vec<tuple<int, int, int>>(uns, q);
    for (auto &[l, r, b] : query) {
        cin >> l >> r >> b; --l;
    }

    sort(rbegin(query), rend(query), [](auto x, auto y) {
        return get<2>(x) < get<2>(y);
    });

    auto a = vec<int>(uns, n);

    set<int> rem;
    for (int i = 0; i < n; ++i) {
        rem.insert(i);
    }

    for (auto [l, r, b] : query) {
        auto iter = rem.lower_bound(l);
        auto last = rem.lower_bound(r);

        while (iter != last) {
            a[*iter] = b;
            iter = rem.erase(iter);
        }
    }

    segtree seg(a);
    for (auto [l, r, b] : query) {
        if (seg.prod(l, r) != b) {
            cout << -1 << endl;
            return 0;
        }
    }

    cout << a[0];
    for (int i = 1; i < n; ++i) {
        cout << ' ' << a[i];
    }
    cout << endl;
}

0