結果

問題 No.1675 Strange Minimum Query
ユーザー sapphire__15sapphire__15
提出日時 2021-09-10 22:28:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 4,105 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 138,336 KB
実行使用メモリ 30,276 KB
最終ジャッジ日時 2024-06-12 01:17:31
合計ジャッジ時間 14,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 413 ms
14,080 KB
testcase_04 AC 369 ms
15,488 KB
testcase_05 AC 33 ms
7,936 KB
testcase_06 AC 520 ms
15,872 KB
testcase_07 AC 552 ms
18,176 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 176 ms
12,416 KB
testcase_11 AC 54 ms
9,344 KB
testcase_12 AC 197 ms
13,428 KB
testcase_13 AC 276 ms
16,200 KB
testcase_14 AC 380 ms
30,276 KB
testcase_15 AC 368 ms
29,508 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 64 ms
6,656 KB
testcase_18 AC 93 ms
7,424 KB
testcase_19 AC 138 ms
12,544 KB
testcase_20 AC 282 ms
15,248 KB
testcase_21 AC 260 ms
15,744 KB
testcase_22 AC 334 ms
17,664 KB
testcase_23 AC 252 ms
11,392 KB
testcase_24 AC 239 ms
12,672 KB
testcase_25 AC 163 ms
9,216 KB
testcase_26 AC 88 ms
8,448 KB
testcase_27 AC 236 ms
15,488 KB
testcase_28 AC 128 ms
11,648 KB
testcase_29 AC 99 ms
11,192 KB
testcase_30 AC 88 ms
8,576 KB
testcase_31 AC 329 ms
13,824 KB
testcase_32 AC 449 ms
20,088 KB
testcase_33 AC 452 ms
20,040 KB
testcase_34 AC 449 ms
20,096 KB
testcase_35 AC 446 ms
20,096 KB
testcase_36 AC 440 ms
20,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>
#include <algorithm>
#include <numeric>
#include <cassert>
#include <cmath>
#include <queue>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <functional>

#define rep(i,n,s) for(int i = (s); i < int(n); i++)
#define MM << " " << 
#define all(x) x.begin(), x.end()

template<class T>
using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>;

using ll = long long;
using Pii = std::pair<int, int>;
using Pll = std::pair<ll, ll>;

template<class T>
bool chmin(T& a, const T b) {
    if(a > b) {
        a = b;
        return true;
    } else {
        return false;
    }
}

template<class T>
bool chmax(T& a, const T b) {
    if(a < b) {
        a = b;
        return true;
    } else {
        return false;
    }
}

template<class T>
void vdeb(std::vector<T> &da) {
    auto n = da.size();
    for(size_t i = 0; i < n; i++) {
        if(i == n-1) std::cout << da[i] << std::endl;
        else std::cout << da[i] << " ";
    }
}
template<>
void vdeb(std::vector<std::string> &da) {
    auto n = da.size();
    for(size_t i = 0; i < n; i++) {
        std::cout << da[i] << std::endl;
    }
}


template<typename T>
struct SegTree{
    std::vector<T> nod;
    T t0;
    std::function<T(T,T)> operation;
    std::function<T(T,T)> merge;
    int size;
    SegTree(int _size, T _t0, std::function<T(T,T)> _operation, std::function<T(T,T)> _merge):t0(_t0), operation(_operation), merge(_merge){
        size=1;
        while(_size>size){
            size*=2;
        }
        nod=std::vector<T>(size*2-1, t0);
    }
    void update(int k, T a){ // operation(da[k], a)
        assert(0<= k && k < size);
        k+=size-1;
        nod[k] = operation(nod[k], a);
        while(k>0){
            k=(k-1)/2;
            nod[k] = merge(nod[k*2+1], nod[k*2+2]); 
        }
    }
    void range_update(int a, int b, T x) {
        assert(0 <= a && a < size);
        assert(0 <= b && b <= size);
        assert(a <= b);
        range_update_query(a, b, 0, 0, size, x);
    }
    T sum(int a, int b) { // merge[a, b)
        assert(0 <= a && a < size);
        assert(0 <= b && b <= size);
        assert(a <= b);
        return sum_query(a, b, 0, 0, size);
    }
    void deb(){
        for(int i=0;i<size*2-1;i++){
            if(i==size*2-2) std::cout << nod[i] <<std:: endl;
            else std::cout << nod[i] << ' ';
        }
        return;
    }
    private:
    void range_update_query(int a,int b,int k,int l,int r,T x){
        if(r<=a||b<=l){
            return;
        }
        if(a<=l && r<=b){
            nod[k] = operation(nod[k], x);
            return;
        }
        else{
            range_update_query(a,b,k*2+1,l,(l+r)/2,x);
            range_update_query(a,b,k*2+2,(l+r)/2,r,x);
            return;
        }
    }
    T sum_query(int a,int b,int k,int l,int r){
        if(r<=a||b<=l){
            return t0;
        }
        if(a<=l && r<=b){
            return nod[k];
        }
        else{
            return merge(sum_query(a,b,k*2+1,l,(l+r)/2),sum_query(a,b,k*2+2,(l+r)/2,r));
        }
    }
};

using namespace std;

int main() {
    int n, q; cin >> n >> q;
    vector<vector<Pii>> da(n+1);
    vector<pair<Pii, int>> query(q);
    rep(i,q,0) {
        int l, r, b; cin >> l >> r >> b;
        da[l-1].push_back({b, 0});
        da[r].push_back({b, 1});
        query[i] = {{l-1, r}, b};
    }
    SegTree<int> st(n, 1000000000, [](int x, int y){return min(x, y);}, [](int x, int y){return min(x, y);});
    map<int, int> mp;
    rep(i,n,0) {
        for(auto &j : da[i]) {
            if(j.second) {
                mp[j.first]--;
                if(mp[j.first] == 0) mp.erase(j.first);
            } else {
                mp[j.first]++;
            }
        }
        if(!mp.empty()) st.update(i, (--mp.end())->first);
    }
    rep(i,q,0) {
        if(st.sum(query[i].first.first, query[i].first.second) != query[i].second) {
            cout << -1 << endl;
            return 0;
        }
    }
    vector<int> ans(n);
    rep(i,n,0) ans[i] = st.sum(i, i+1);
    vdeb(ans);
}
0