結果

問題 No.1675 Strange Minimum Query
ユーザー miscalc
提出日時 2021-09-10 21:54:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,830 bytes
コンパイル時間 2,606 ms
コンパイル使用メモリ 210,684 KB
最終ジャッジ日時 2025-01-24 10:21:25
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
//using mint = modint1000000007;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll safemod(ll A, ll M) {return (A % M + M) % M;}
ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;}
ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

#include <atcoder/segtree>
#include <atcoder/lazysegtree>

ll mymin(ll a, ll b)
{
  return min(a, b);
}

ll inf()
{
  return INF;
}

ll mymax(ll a, ll b)
{
  return max(a, b);
}

ll minusinf()
{
  return -INF;
}

int main()
{
  ll N, Q;
  cin >> N >> Q;
  vector<tlll> BLR(Q);
  for (ll q = 0; q < Q; q++)
  {
    ll l, r, b;
    cin >> l >> r >> b;
    l--;
    BLR.at(q) = make_tuple(b, l, r);
  }

  sort(BLR.begin(), BLR.end(), greater<tlll>());

  lazy_segtree<ll, mymax, minusinf, ll, mymax, mymax, minusinf> lseg(N);
  for (ll q = 0; q < Q; q++)
  {
    auto blr = BLR.at(q);
    ll b = get<0>(blr), l = get<1>(blr), r = get<2>(blr);

    lseg.apply(l, r, b);
  }

  segtree<ll, mymin, inf> seg(N);
  for (ll i = 0; i < N; i++)
  {
    seg.set(i, min((ll)1e9, lseg.get(i)));
  }

  for (ll q = 0; q < Q; q++)
  {
    auto blr = BLR.at(q);
    ll b = get<0>(blr), l = get<1>(blr), r = get<2>(blr);

    if (seg.prod(l, r) != b)
      FINALANS(-1);
  }

  for (ll i = 0; i < N; i++)
  {
    cout << seg.get(i) << (i == N - 1 ? '\n' : ' ');
  }
}
0