結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 240 ms
7,684 KB
testcase_04 AC 207 ms
8,320 KB
testcase_05 AC 18 ms
6,944 KB
testcase_06 AC 284 ms
8,364 KB
testcase_07 AC 298 ms
9,664 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 138 ms
8,576 KB
testcase_11 AC 36 ms
6,940 KB
testcase_12 AC 151 ms
8,832 KB
testcase_13 AC 296 ms
11,740 KB
testcase_14 AC 328 ms
11,792 KB
testcase_15 AC 301 ms
11,784 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 55 ms
6,940 KB
testcase_18 AC 81 ms
6,940 KB
testcase_19 AC 102 ms
7,936 KB
testcase_20 AC 244 ms
9,856 KB
testcase_21 AC 211 ms
9,364 KB
testcase_22 AC 282 ms
10,368 KB
testcase_23 AC 232 ms
7,396 KB
testcase_24 AC 201 ms
7,936 KB
testcase_25 AC 152 ms
6,940 KB
testcase_26 AC 72 ms
6,944 KB
testcase_27 AC 185 ms
9,088 KB
testcase_28 AC 96 ms
7,808 KB
testcase_29 AC 65 ms
7,424 KB
testcase_30 AC 69 ms
6,940 KB
testcase_31 AC 303 ms
9,196 KB
testcase_32 AC 378 ms
11,704 KB
testcase_33 AC 375 ms
11,728 KB
testcase_34 AC 377 ms
11,852 KB
testcase_35 AC 369 ms
11,728 KB
testcase_36 AC 370 ms
11,864 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