結果

問題 No.1675 Strange Minimum Query
ユーザー c--c--
提出日時 2021-09-13 19:52:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 1,497 bytes
コンパイル時間 5,055 ms
コンパイル使用メモリ 270,828 KB
実行使用メモリ 11,896 KB
最終ジャッジ日時 2024-06-25 20:39:07
合計ジャッジ時間 16,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 232 ms
7,552 KB
testcase_04 AC 207 ms
8,320 KB
testcase_05 AC 18 ms
5,632 KB
testcase_06 AC 276 ms
8,448 KB
testcase_07 AC 293 ms
9,728 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 137 ms
8,576 KB
testcase_11 AC 36 ms
7,040 KB
testcase_12 AC 153 ms
8,832 KB
testcase_13 AC 297 ms
11,832 KB
testcase_14 AC 326 ms
11,832 KB
testcase_15 AC 301 ms
11,844 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 54 ms
5,376 KB
testcase_18 AC 84 ms
5,376 KB
testcase_19 AC 103 ms
8,064 KB
testcase_20 AC 245 ms
9,984 KB
testcase_21 AC 209 ms
9,600 KB
testcase_22 AC 278 ms
10,368 KB
testcase_23 AC 229 ms
7,424 KB
testcase_24 AC 201 ms
7,908 KB
testcase_25 AC 149 ms
6,400 KB
testcase_26 AC 70 ms
5,888 KB
testcase_27 AC 184 ms
9,088 KB
testcase_28 AC 95 ms
7,936 KB
testcase_29 AC 65 ms
7,552 KB
testcase_30 AC 68 ms
6,016 KB
testcase_31 AC 302 ms
9,452 KB
testcase_32 AC 378 ms
11,776 KB
testcase_33 AC 373 ms
11,776 KB
testcase_34 AC 377 ms
11,776 KB
testcase_35 AC 373 ms
11,776 KB
testcase_36 AC 369 ms
11,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for (ll i = 0; i < (n); ++i)
#define rep1(i, n) for (ll i = 1; i <= n; ++i)
#define reps(i, s, e) for (ll i = s; i <= e; ++i)
#define all(v) v.begin(), v.end()
using ll = long long;
using ld = long double;
using cp = complex<ld>;
using pa = pair<ll, ll>;
using tup = tuple<ll, ll, ll>;
using vp = vector<pair<ll, ll>>;
using vtup = vector<tuple<ll, ll, ll>>;
using st = string;
using vs = vector<string>;
using vc = vector<char>;
using vvi = vector<vector<ll>>;
using vvc = vector<vector<char>>;
using vi = vector<ll>;
const ll MOD1 = 1000000007;
const ll MOD2 = 998244353;
const ll INF = (1LL << 60);

using S = int;
using F = int;
S op(S a, S b) { return min(a, b); }
S e() { return int(1e9); }
S mapping(F x, S a) { return x == -1 ? a : x; }
F composition(F f, F g) { return f == -1 ? g : f; }
F id() { return -1; }

int main() {
  ll n, q;
  cin >> n >> q;
  vector<array<ll, 3>> query(q);
  rep(i, q) {
    ll l, r, b;
    cin >> l >> r >> b;
    l--;
    query[i] = {b, l, r};
  }
  sort(all(query));
  lazy_segtree<S, op, e, F, mapping, composition, id> seg(n);

  for (auto [b, l, r] : query) {
    seg.apply(l, r, b);
  }

  for (auto [b, l, r] : query) {
    if (seg.prod(l, r) != b) {
      cout << -1 << endl;
      return 0;
    }
  }

  rep(i, n) {
    cout << seg.get(i);
    if (i != n - 1) {
      cout << " ";
    } else {
      cout << endl;
    }
  }

  return 0;
}
0