結果

問題 No.1675 Strange Minimum Query
ユーザー mamimume____momamimume____mo
提出日時 2021-09-10 23:11:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,453 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 185,808 KB
実行使用メモリ 35,356 KB
最終ジャッジ日時 2024-06-12 03:40:26
合計ジャッジ時間 14,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 591 ms
17,244 KB
testcase_04 AC 443 ms
17,148 KB
testcase_05 AC 28 ms
7,552 KB
testcase_06 AC 716 ms
19,604 KB
testcase_07 AC 712 ms
21,444 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 293 ms
21,288 KB
testcase_14 AC 456 ms
35,356 KB
testcase_15 AC 415 ms
30,636 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 50 ms
6,144 KB
testcase_18 AC 78 ms
7,040 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 277 ms
15,772 KB
testcase_23 AC 237 ms
11,548 KB
testcase_24 AC 199 ms
11,844 KB
testcase_25 AC 149 ms
8,744 KB
testcase_26 WA -
testcase_27 AC 181 ms
13,088 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 305 ms
13,200 KB
testcase_32 AC 388 ms
18,096 KB
testcase_33 AC 381 ms
18,092 KB
testcase_34 AC 387 ms
18,096 KB
testcase_35 AC 353 ms
13,440 KB
testcase_36 AC 346 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,INF);    

    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