結果

問題 No.1675 Strange Minimum Query
ユーザー yakkiyakki
提出日時 2021-09-10 22:22:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 2,140 bytes
コンパイル時間 1,343 ms
コンパイル使用メモリ 136,860 KB
実行使用メモリ 28,276 KB
最終ジャッジ日時 2024-06-12 00:56:37
合計ジャッジ時間 11,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 204 ms
16,972 KB
testcase_04 AC 190 ms
17,884 KB
testcase_05 AC 44 ms
9,856 KB
testcase_06 AC 243 ms
19,288 KB
testcase_07 AC 273 ms
21,388 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 203 ms
16,000 KB
testcase_11 AC 63 ms
10,368 KB
testcase_12 AC 223 ms
17,544 KB
testcase_13 AC 284 ms
23,656 KB
testcase_14 AC 317 ms
28,228 KB
testcase_15 AC 286 ms
28,276 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 43 ms
7,424 KB
testcase_18 AC 59 ms
8,424 KB
testcase_19 AC 110 ms
14,336 KB
testcase_20 AC 172 ms
17,204 KB
testcase_21 AC 162 ms
18,076 KB
testcase_22 AC 204 ms
20,480 KB
testcase_23 AC 147 ms
13,704 KB
testcase_24 AC 141 ms
14,968 KB
testcase_25 AC 99 ms
10,792 KB
testcase_26 AC 63 ms
9,216 KB
testcase_27 AC 154 ms
17,816 KB
testcase_28 AC 90 ms
12,416 KB
testcase_29 AC 93 ms
12,928 KB
testcase_30 AC 61 ms
9,472 KB
testcase_31 AC 176 ms
16,676 KB
testcase_32 AC 258 ms
23,940 KB
testcase_33 AC 251 ms
23,912 KB
testcase_34 AC 256 ms
23,796 KB
testcase_35 AC 302 ms
24,292 KB
testcase_36 AC 297 ms
24,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
#include<cstdio>
#include<cstdlib>
#include<numeric>
#include<ctime>
//#include<atcoder/all>
using namespace std;
//using namespace atcoder;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
//#define MOD 1000000007
#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592
#define PI acos(-1.0)

const double EPS = 1e-18;

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;
//using mint = modint998244353;

int dh[] = {-1,1,0,0};
int dw[] = {0,0,1,-1};

template<typename T>
vector<T> compress(vector<T> &v){
    vector<T> res = v;
    sort(res.begin(),res.end());
    res.erase(unique(res.begin(),res.end()),res.end());
    for(auto &u : v){u = lower_bound(res.begin(),res.end(),u)-res.begin();}
    return res;
}


int main(){
    int n,q; cin >> n >> q;
    vector<int> l(q),r(q),c(q);
    rep(i,q){
        cin >> l[i] >> r[i] >> c[i];
        l[i]--;
        r[i]--;
    }
    vector<int> b = c;
    compress(b);
    vector<int> re(q);
    rep(i,q) re[b[i]] = c[i];
    vector<vector<Pi>> que(q);
    rep(i,q){
        que[b[i]].push_back({l[i],r[i]});
    }
    vector<int> ans(n,1000000000);
    set<int> st;
    rep(i,n) st.insert(i);
    for(int i = q-1; i >= 0; i--){
        for(auto [l2,r2] : que[i]){
            auto p = st.lower_bound(l2);
            auto p2 = st.lower_bound(r2+1);
            if(p == p2){
                cout << -1 << endl;
                return 0;
            }
        }
        for(auto [l2,r2] : que[i]){
            auto p = st.lower_bound(l2);
            auto p2 = st.lower_bound(r2+1);
            if(p == p2) continue;
            while(p != p2){
                ans[*p] = re[i];
                p = st.erase(p);
            }
        }
    }
    rep(i,n){
        cout << ans[i];
        if(i != n-1) cout << " ";
    }
    cout << endl;
}
0