結果

問題 No.1675 Strange Minimum Query
ユーザー kusaf_kusaf_
提出日時 2024-07-31 02:26:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 3,849 ms
コンパイル使用メモリ 268,896 KB
実行使用メモリ 19,716 KB
最終ジャッジ日時 2024-07-31 02:26:32
合計ジャッジ時間 14,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 141 ms
8,628 KB
testcase_04 AC 137 ms
12,328 KB
testcase_05 AC 31 ms
9,540 KB
testcase_06 AC 166 ms
9,312 KB
testcase_07 AC 185 ms
13,496 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 90 ms
16,292 KB
testcase_11 AC 38 ms
14,596 KB
testcase_12 AC 98 ms
16,480 KB
testcase_13 AC 152 ms
19,604 KB
testcase_14 AC 187 ms
19,712 KB
testcase_15 AC 177 ms
19,704 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 39 ms
6,940 KB
testcase_18 AC 54 ms
7,240 KB
testcase_19 AC 82 ms
15,740 KB
testcase_20 AC 163 ms
17,580 KB
testcase_21 AC 150 ms
17,384 KB
testcase_22 AC 189 ms
18,196 KB
testcase_23 AC 142 ms
9,568 KB
testcase_24 AC 135 ms
11,744 KB
testcase_25 AC 95 ms
8,296 KB
testcase_26 AC 54 ms
9,844 KB
testcase_27 AC 133 ms
16,948 KB
testcase_28 AC 82 ms
15,492 KB
testcase_29 AC 61 ms
15,252 KB
testcase_30 AC 53 ms
9,652 KB
testcase_31 AC 189 ms
13,112 KB
testcase_32 AC 246 ms
19,692 KB
testcase_33 AC 253 ms
19,716 KB
testcase_34 AC 247 ms
19,712 KB
testcase_35 AC 227 ms
19,708 KB
testcase_36 AC 229 ms
19,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
#include <atcoder/segtree>
using namespace std;
using namespace atcoder;
using ll = long long;

using T = ll;
using F = ll;
T op(T l, T r) { return min(l, r); }
T e() { return 1e18; }
T fx(F f, T x) { return (f == 1e18 ? x : f); }
F fg(F f, F g) { return (f == 1e18 ? g : f); }
F id() { return 1e18; }

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, K;
  cin >> N >> K;

  vector<tuple<ll, ll, ll>> v(K);
  for(auto &[x, l, r] : v) { cin >> l >> r >> x; }
  ranges::sort(v);

  lazy_segtree<T, op, e, F, fx, fg, id> S(vector<T>(N, 1));
  for(auto &[x, l, r] : v) { S.apply(--l, r, x); }

  segtree<T, op, e> s(N);
  for(ll i = 0; i < N; i++) { s.set(i, S.get(i)); }

  for(auto &[x, l, r] : v) {
    if(s.prod(l, r) != x) {
      cout << -1 << "\n";
      return 0;
    }
  }

  for(ll i = 0; i < N; i++) { cout << s.get(i) << " \n"[i == N - 1]; }
}
0