結果

問題 No.1675 Strange Minimum Query
ユーザー ぷらぷら
提出日時 2021-09-10 21:36:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 1,727 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 220,088 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-06-11 22:48:23
合計ジャッジ時間 14,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 186 ms
6,940 KB
testcase_04 AC 187 ms
10,112 KB
testcase_05 AC 65 ms
10,368 KB
testcase_06 AC 217 ms
7,168 KB
testcase_07 AC 242 ms
9,984 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 296 ms
13,696 KB
testcase_11 AC 96 ms
12,160 KB
testcase_12 AC 340 ms
14,720 KB
testcase_13 AC 342 ms
17,896 KB
testcase_14 AC 397 ms
17,920 KB
testcase_15 AC 345 ms
17,828 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 64 ms
6,944 KB
testcase_18 AC 87 ms
7,168 KB
testcase_19 AC 168 ms
14,848 KB
testcase_20 AC 256 ms
13,824 KB
testcase_21 AC 256 ms
15,872 KB
testcase_22 AC 315 ms
16,768 KB
testcase_23 AC 209 ms
8,576 KB
testcase_24 AC 210 ms
11,648 KB
testcase_25 AC 145 ms
7,808 KB
testcase_26 AC 90 ms
9,088 KB
testcase_27 AC 243 ms
16,256 KB
testcase_28 AC 140 ms
12,928 KB
testcase_29 AC 129 ms
14,336 KB
testcase_30 AC 92 ms
9,344 KB
testcase_31 AC 272 ms
10,112 KB
testcase_32 AC 392 ms
17,780 KB
testcase_33 AC 389 ms
17,920 KB
testcase_34 AC 395 ms
17,920 KB
testcase_35 AC 430 ms
17,880 KB
testcase_36 AC 438 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int inf = 1000000000;

template <typename T>
struct SegmentTree {
    int n;
    vector<T> dat;
    SegmentTree() {}
    SegmentTree(int N) {
        n = 1;
        while(n < N) {
            n *= 2;
        }
        dat.resize(2*n-1,inf);
    }
    void update(int x, T val) {
        x += (n-1);
        dat[x] = val;
        while(x > 0) {
            x = (x-1)/2;
            dat[x] = min(dat[2*x+1],dat[2*x+2]);
        }
    }
    T query(int a, int b, int k, int l, int r) {
        if(r <= a || b <= l) return inf;
        if(a <= l && r <= b) return dat[k];
        T vl = query(a, b, 2*k+1, l, (l+r)/2);
        T vr = query(a, b, 2*k+2, (l+r)/2, r);
        return min(vl, vr);
    }
    T query(int a,int b) {//[a,b)
        return query(a,b,0,0,n);
    }
};

int main() {
    int N,Q;
    cin >> N >> Q;
    vector<array<int,3>>tmp(Q);
    for(int i = 0; i < Q; i++) {
        cin >> tmp[i][1] >> tmp[i][2] >> tmp[i][0];
        tmp[i][1]--;
        tmp[i][2]--;
    }
    sort(tmp.rbegin(),tmp.rend());
    set<int>st;
    for(int i = 0; i < N; i++) {
        st.insert(i);
    }
    vector<int>ans(N,inf);
    SegmentTree<int>Seg(N);
    for(int i = 0; i < Q; i++) {
        while (st.lower_bound(tmp[i][1]) != st.end() && *st.lower_bound(tmp[i][1]) <= tmp[i][2]) {
            ans[*st.lower_bound(tmp[i][1])] = tmp[i][0];
            Seg.update(*st.lower_bound(tmp[i][1]),tmp[i][0]);
            st.erase(st.lower_bound(tmp[i][1]));
        }
        if(Seg.query(tmp[i][1],tmp[i][2]+1) != tmp[i][0]) {
            cout << -1 << endl;
            return 0;
        }
    }
    for(int i = 0; i < N; i++) {
        cout << ans[i] << ((i+1 == N)?"\n":" ");
    }
}
0