結果

問題 No.1675 Strange Minimum Query
ユーザー aut_jul_duraut_jul_dur
提出日時 2021-09-10 23:52:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 1,544 bytes
コンパイル時間 4,216 ms
コンパイル使用メモリ 240,092 KB
実行使用メモリ 15,772 KB
最終ジャッジ日時 2024-06-12 06:29:59
合計ジャッジ時間 15,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 274 ms
8,260 KB
testcase_04 AC 248 ms
10,368 KB
testcase_05 AC 22 ms
7,552 KB
testcase_06 AC 324 ms
8,832 KB
testcase_07 AC 350 ms
11,508 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 156 ms
12,384 KB
testcase_11 AC 42 ms
10,512 KB
testcase_12 AC 168 ms
12,464 KB
testcase_13 AC 294 ms
15,744 KB
testcase_14 AC 341 ms
15,712 KB
testcase_15 AC 309 ms
15,728 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 58 ms
6,944 KB
testcase_18 AC 83 ms
6,940 KB
testcase_19 AC 116 ms
11,768 KB
testcase_20 AC 255 ms
13,568 KB
testcase_21 AC 225 ms
13,400 KB
testcase_22 AC 295 ms
14,448 KB
testcase_23 AC 237 ms
8,540 KB
testcase_24 AC 210 ms
9,728 KB
testcase_25 AC 156 ms
7,424 KB
testcase_26 AC 77 ms
7,680 KB
testcase_27 AC 199 ms
13,112 KB
testcase_28 AC 105 ms
11,492 KB
testcase_29 AC 77 ms
11,160 KB
testcase_30 AC 74 ms
7,808 KB
testcase_31 AC 311 ms
11,284 KB
testcase_32 AC 393 ms
15,692 KB
testcase_33 AC 393 ms
15,772 KB
testcase_34 AC 390 ms
15,684 KB
testcase_35 AC 384 ms
15,696 KB
testcase_36 AC 383 ms
15,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
const long long MOD = 998244353;
//const long long INF = 9*1e18;
using ll = long long;
using mint = modint998244353;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
long double PI = 3.14159265358979;
using S = long long;
using F = long long;

const S INF = 1e10;
const F ID = 1e10;

S op(S a, S b){ return std::min(a, b); }
S e(){ return INF; }
S mapping(F f, S x){ return (f == ID ? x : f); }
F composition(F f, F g){ return (f == ID ? g : f); }
F id(){ return ID; }

int main(){
  ll N,Q;
  cin>>N>>Q;
  vector<ll> v;
  v.assign(N,INF);
  lazy_segtree<S,op,e,F,mapping,composition,id> seg(v);
  vector<tuple<ll,ll,ll>> A(Q);
  rep(i,Q){
    ll a,b,c;
    cin>>a>>b>>c;
    a--;
    A[i] = {c,a,b};
  }
  sort(all(A));
  rep(i,Q){
    seg.apply(get<1>(A[i]),get<2>(A[i]),get<0>(A[i]));
  }
  bool d = 0;
  rep(i,Q){
    if(seg.prod(get<1>(A[i]),get<2>(A[i])) != get<0>(A[i])){
      d = 1;
    }
  }
  if(d){
    cout << -1 << endl;
  }
  else{
    rep(i,N-1){
      if(seg.get(i) == INF){
        cout << 1000000000 << " ";
      }
      else{
        cout << seg.get(i) << " ";
      }
    }
    if(seg.get(N-1) == INF){
      cout << 1000000000 << endl;
    }
    else{
      cout <<seg.get(N-1) << endl;
    }
  }
  return 0;
}
0