結果

問題 No.1675 Strange Minimum Query
ユーザー abc3abc3
提出日時 2021-09-10 23:57:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 1,827 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 221,116 KB
実行使用メモリ 24,376 KB
最終ジャッジ日時 2024-06-12 06:51:04
合計ジャッジ時間 12,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 109 ms
13,696 KB
testcase_04 AC 121 ms
14,976 KB
testcase_05 AC 56 ms
9,728 KB
testcase_06 AC 125 ms
15,476 KB
testcase_07 AC 143 ms
17,532 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 151 ms
14,720 KB
testcase_11 AC 66 ms
10,368 KB
testcase_12 AC 173 ms
16,128 KB
testcase_13 AC 228 ms
24,300 KB
testcase_14 AC 180 ms
24,320 KB
testcase_15 AC 177 ms
24,320 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 41 ms
7,296 KB
testcase_18 AC 54 ms
8,576 KB
testcase_19 AC 110 ms
14,464 KB
testcase_20 AC 159 ms
17,408 KB
testcase_21 AC 160 ms
18,304 KB
testcase_22 AC 195 ms
20,864 KB
testcase_23 AC 127 ms
13,952 KB
testcase_24 AC 131 ms
15,232 KB
testcase_25 AC 86 ms
11,008 KB
testcase_26 AC 60 ms
9,216 KB
testcase_27 AC 153 ms
17,920 KB
testcase_28 AC 94 ms
12,544 KB
testcase_29 AC 93 ms
13,184 KB
testcase_30 AC 62 ms
9,472 KB
testcase_31 AC 177 ms
16,728 KB
testcase_32 AC 249 ms
24,320 KB
testcase_33 AC 245 ms
24,376 KB
testcase_34 AC 248 ms
24,324 KB
testcase_35 AC 262 ms
24,308 KB
testcase_36 AC 262 ms
24,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

   #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    typedef unsigned long long ull;
    using P=pair<ll,ll>;
    const ll INF=1001001001;
    const int mod=1e9+7;

    void solve(){
        int n,Q;
        cin>>n>>Q;
        vector<vector<int>>t(Q,vector<int>(3));
        rep(i,Q){
            int l,r,b;
            cin>>l>>r>>b;
            l--;
            t[i]={b,l,r};
        }
        sort(t.rbegin(),t.rend());
        int pre=-1;
        set<int>used,unused;
        rep(i,n){unused.insert(i);}

        vector<int>ans(n,1e9);
        for(auto v:t){
            int b=v[0],l=v[1],r=v[2];
            if(b!=pre){
                pre=b;
                used.clear();
            }
            auto itr=unused.lower_bound(l);
            if(itr==unused.end()||*itr>=r){
                auto itr2=used.lower_bound(l);
                if(itr2==used.end()||*itr2>=r){
                    cout<<-1<<endl;
                    return;
                }
            }
            else{
                while(itr!=unused.end()&&*itr<r){
                    ans[*itr]=b;
                    used.insert(*itr);
                    itr=unused.erase(itr);
                }
            }
        }
        rep(i,n){
            if(i){cout<<" ";}
            cout<<ans[i];
        }
        cout<<endl;
    }
 
    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve(); 

        return 0;
    }
0