結果

問題 No.1675 Strange Minimum Query
ユーザー ぷらぷら
提出日時 2021-09-10 21:34:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,788 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 221,624 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-06-11 22:41:30
合計ジャッジ時間 13,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 185 ms
6,784 KB
testcase_04 AC 184 ms
10,112 KB
testcase_05 AC 64 ms
10,368 KB
testcase_06 AC 214 ms
7,168 KB
testcase_07 AC 242 ms
9,984 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 344 ms
17,792 KB
testcase_14 AC 353 ms
17,792 KB
testcase_15 AC 324 ms
17,920 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 64 ms
6,784 KB
testcase_18 AC 87 ms
7,168 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 314 ms
16,768 KB
testcase_23 AC 217 ms
8,576 KB
testcase_24 AC 214 ms
11,520 KB
testcase_25 AC 145 ms
7,680 KB
testcase_26 WA -
testcase_27 AC 246 ms
16,384 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 269 ms
10,112 KB
testcase_32 AC 392 ms
17,920 KB
testcase_33 AC 389 ms
17,792 KB
testcase_34 AC 396 ms
17,792 KB
testcase_35 AC 424 ms
17,792 KB
testcase_36 AC 433 ms
17,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int inf = 1001001001;

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++) {
        bool flag = false;
        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]));
            flag = true;
        }
        if(!flag && 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