結果

問題 No.1675 Strange Minimum Query
ユーザー miscalcmiscalc
提出日時 2021-09-10 23:36:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 1,809 bytes
コンパイル時間 2,632 ms
コンパイル使用メモリ 219,576 KB
実行使用メモリ 15,664 KB
最終ジャッジ日時 2024-06-12 05:03:59
合計ジャッジ時間 13,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 225 ms
8,220 KB
testcase_04 AC 198 ms
10,228 KB
testcase_05 AC 23 ms
7,424 KB
testcase_06 AC 261 ms
8,912 KB
testcase_07 AC 276 ms
11,480 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 134 ms
12,176 KB
testcase_11 AC 44 ms
10,564 KB
testcase_12 AC 148 ms
12,464 KB
testcase_13 AC 273 ms
15,568 KB
testcase_14 AC 317 ms
15,560 KB
testcase_15 AC 287 ms
15,592 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 54 ms
6,940 KB
testcase_18 AC 78 ms
6,944 KB
testcase_19 AC 105 ms
11,676 KB
testcase_20 AC 238 ms
13,460 KB
testcase_21 AC 202 ms
13,288 KB
testcase_22 AC 268 ms
14,180 KB
testcase_23 AC 220 ms
8,448 KB
testcase_24 AC 197 ms
9,796 KB
testcase_25 AC 145 ms
7,296 KB
testcase_26 AC 69 ms
7,680 KB
testcase_27 AC 188 ms
12,884 KB
testcase_28 AC 96 ms
11,424 KB
testcase_29 AC 66 ms
11,192 KB
testcase_30 AC 67 ms
7,680 KB
testcase_31 AC 291 ms
11,004 KB
testcase_32 AC 358 ms
15,664 KB
testcase_33 AC 350 ms
15,596 KB
testcase_34 AC 352 ms
15,632 KB
testcase_35 AC 348 ms
15,596 KB
testcase_36 AC 354 ms
15,660 KB
権限があれば一括ダウンロードができます

ソースコード

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/lazysegtree>

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

ll e()
{
  return INF;
}

ll mapping(ll f, ll x)
{
  return (f == INF ? x : f);
}

ll composition(ll f, ll g)
{
  return (f == INF ? g : f);
}

ll id()
{
  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());

  lazy_segtree<ll, op, e, ll, mapping, composition, id> seg(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);

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

  for (ll i = 0; i < N; i++)
  {
    if (seg.get(i) == INF)
      seg.set(i, 1e9);
  }

  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