結果

問題 No.1675 Strange Minimum Query
ユーザー mamimume____momamimume____mo
提出日時 2021-09-10 23:12:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 1,460 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 188,064 KB
実行使用メモリ 35,352 KB
最終ジャッジ日時 2024-06-12 03:43:02
合計ジャッジ時間 12,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 1000000100;
const ll INFL = 2e18;
template <class T>bool chmin(T &a, T b){ if (a > b) { a = b; return true;} else return false;}
template <class T>bool chmax(T &a, T b){ if (a < b) { a = b; return true;} else return false;}

using P = pair<int,int>;

int main() {
    int N,Q;
    cin >> N >> Q;

    vector<int> ans(N,1000000000);    

    multiset<int> st;
    vector<vector<P>> query(N);
    priority_queue<P, vector<P>, greater<P>> pq;
    for (int i = 0;i < Q;i++) {
        int l, r, B;
        cin >> l >> r >> B;
        l--, r--;
        query[l].push_back({r, B});
    }

    int rem = Q;
    map<int,int> mp;
    
    for (int i = 0;i < N;i++) {
        for (int j = 0;j < query[i].size();j++) {
            int r, B;
            tie(r, B) = query[i][j];
            st.insert(B);
            pq.push({r, B});
            mp[B]++;
        }
        if (st.size()) {
            ans[i] = *st.rbegin();
            rem -= mp[*st.rbegin()];
            mp[*st.rbegin()] = 0;
        }

        while (pq.size() && i == pq.top().first) {
            int r,B;
            tie(r, B) = pq.top();
            pq.pop();
            st.erase(st.find(B));
        }
    }

    if (rem) {
        cout << -1 << endl;
    }
    else {
        for (int i = 0;i < N;i++) {
            if (i != N-1)cout << ans[i] << " ";
            else cout << ans[i] << endl;
        }
    }
}
0