#include #include using namespace std; using namespace atcoder; using ll = long long; using T = ll; using F = ll; T op(T l, T r) { return min(l, r); } T e() { return 1e18; } T fx(F f, T x) { return (f == 1e18 ? x : f); } F fg(F f, F g) { return (f == 1e18 ? g : f); } F id() { return 1e18; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N, K; cin >> N >> K; vector> v(K); for(auto &[x, l, r] : v) { cin >> l >> r >> x; } ranges::sort(v); lazy_segtree S(vector(N, 1)); for(auto &[x, l, r] : v) { S.apply(--l, r, x); } for(auto &[x, l, r] : v) { if(S.prod(l, r) != x) { cout << -1 << "\n"; return 0; } } for(ll i = 0; i < N; i++) { cout << S.get(i) << " \n"[i == N - 1]; } }