結果

問題 No.1675 Strange Minimum Query
ユーザー 👑 emthrmemthrm
提出日時 2021-09-10 21:28:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 2,561 bytes
コンパイル時間 2,676 ms
コンパイル使用メモリ 220,368 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-06-11 22:30:43
合計ジャッジ時間 10,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 81 ms
7,680 KB
testcase_04 AC 92 ms
12,544 KB
testcase_05 AC 53 ms
13,056 KB
testcase_06 AC 94 ms
8,320 KB
testcase_07 AC 109 ms
11,776 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 142 ms
23,424 KB
testcase_11 AC 73 ms
20,736 KB
testcase_12 AC 166 ms
26,240 KB
testcase_13 AC 154 ms
22,784 KB
testcase_14 AC 169 ms
23,552 KB
testcase_15 AC 161 ms
22,656 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 32 ms
8,064 KB
testcase_18 AC 40 ms
8,320 KB
testcase_19 AC 98 ms
19,968 KB
testcase_20 AC 109 ms
17,664 KB
testcase_21 AC 125 ms
21,376 KB
testcase_22 AC 143 ms
22,784 KB
testcase_23 AC 76 ms
10,368 KB
testcase_24 AC 94 ms
15,360 KB
testcase_25 AC 56 ms
9,472 KB
testcase_26 AC 49 ms
10,752 KB
testcase_27 AC 126 ms
22,272 KB
testcase_28 AC 80 ms
16,000 KB
testcase_29 AC 89 ms
18,432 KB
testcase_30 AC 51 ms
11,136 KB
testcase_31 AC 93 ms
12,544 KB
testcase_32 AC 166 ms
24,192 KB
testcase_33 AC 170 ms
24,320 KB
testcase_34 AC 167 ms
24,320 KB
testcase_35 AC 189 ms
24,192 KB
testcase_36 AC 190 ms
23,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <typename Band>
struct SparseTable {
  using Fn = std::function<Band(Band, Band)>;

  SparseTable() {}

  SparseTable(const std::vector<Band> &a, Fn fn) { init(a, fn); }

  void init(const std::vector<Band> &a, Fn fn_) {
    is_built = true;
    fn = fn_;
    int n = a.size(), table_h = 0;
    lg.assign(n + 1, 0);
    for (int i = 2; i <= n; ++i) lg[i] = lg[i >> 1] + 1;
    while ((1 << table_h) <= n) ++table_h;
    dat.assign(table_h, std::vector<Band>(n));
    for (int j = 0; j < n; ++j) dat[0][j] = a[j];
    for (int i = 1; i < table_h; ++i) for (int j = 0; j + (1 << i) <= n; ++j) {
      dat[i][j] = fn(dat[i - 1][j], dat[i - 1][j + (1 << (i - 1))]);
    }
  }

  Band query(int left, int right) const {
    assert(is_built && left < right);
    int h = lg[right - left];
    return fn(dat[h][left], dat[h][right - (1 << h)]);
  }

private:
  bool is_built = false;
  Fn fn;
  std::vector<int> lg;
  std::vector<std::vector<Band>> dat;
};

int main() {
  int n, q; cin >> n >> q;
  vector<int> l(q), r(q), b(q); REP(i, q) cin >> l[i] >> r[i] >> b[i], --l[i], --r[i];
  vector<int> ord(q);
  iota(ALL(ord), 0);
  sort(ALL(ord), [&](int l, int r) -> bool { return b[l] > b[r]; });
  vector<int> a(n, 1);
  set<int> s;
  REP(i, n) s.emplace(i);
  for (int i : ord) {
    for (auto it = s.lower_bound(l[i]); it != s.end() && *it <= r[i]; it = s.erase(it)) {
      a[*it] = b[i];
    }
  }
  SparseTable<int> sparse_table(a, [](int a, int b) -> int { return min(a, b); });
  REP(i, q) {
    if (sparse_table.query(l[i], r[i] + 1) != b[i]) {
      cout << "-1\n";
      return 0;
    }
  }
  REP(i, n) cout << a[i] << " \n"[i + 1 == n];
  return 0;
}
0