結果

問題 No.1675 Strange Minimum Query
ユーザー mamimume____momamimume____mo
提出日時 2021-09-10 23:12:23
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 467 ms
17,244 KB
testcase_04 AC 364 ms
17,260 KB
testcase_05 AC 27 ms
7,424 KB
testcase_06 AC 539 ms
19,608 KB
testcase_07 AC 550 ms
21,384 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 147 ms
12,804 KB
testcase_11 AC 25 ms
7,344 KB
testcase_12 AC 164 ms
13,952 KB
testcase_13 AC 265 ms
21,288 KB
testcase_14 AC 419 ms
35,352 KB
testcase_15 AC 372 ms
30,508 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 44 ms
6,144 KB
testcase_18 AC 67 ms
6,912 KB
testcase_19 AC 79 ms
10,312 KB
testcase_20 AC 205 ms
13,188 KB
testcase_21 AC 175 ms
13,572 KB
testcase_22 AC 245 ms
15,768 KB
testcase_23 AC 198 ms
11,476 KB
testcase_24 AC 168 ms
11,716 KB
testcase_25 AC 127 ms
8,868 KB
testcase_26 AC 53 ms
7,424 KB
testcase_27 AC 151 ms
13,088 KB
testcase_28 AC 76 ms
9,216 KB
testcase_29 AC 47 ms
8,960 KB
testcase_30 AC 54 ms
7,296 KB
testcase_31 AC 275 ms
13,116 KB
testcase_32 AC 326 ms
18,092 KB
testcase_33 AC 318 ms
18,220 KB
testcase_34 AC 333 ms
18,092 KB
testcase_35 AC 297 ms
13,312 KB
testcase_36 AC 306 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

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