結果

問題 No.1675 Strange Minimum Query
ユーザー kusaf_kusaf_
提出日時 2024-07-31 02:27:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 4,344 ms
コンパイル使用メモリ 268,872 KB
実行使用メモリ 15,636 KB
最終ジャッジ日時 2024-07-31 02:27:46
合計ジャッジ時間 13,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 139 ms
7,988 KB
testcase_04 AC 124 ms
10,056 KB
testcase_05 AC 13 ms
7,424 KB
testcase_06 AC 178 ms
8,644 KB
testcase_07 AC 176 ms
11,464 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 93 ms
12,120 KB
testcase_11 AC 29 ms
10,484 KB
testcase_12 AC 103 ms
12,504 KB
testcase_13 AC 160 ms
15,456 KB
testcase_14 AC 209 ms
15,560 KB
testcase_15 AC 187 ms
15,460 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 41 ms
6,944 KB
testcase_18 AC 59 ms
6,944 KB
testcase_19 AC 80 ms
11,724 KB
testcase_20 AC 181 ms
13,448 KB
testcase_21 AC 158 ms
13,180 KB
testcase_22 AC 236 ms
14,120 KB
testcase_23 AC 164 ms
8,320 KB
testcase_24 AC 146 ms
9,632 KB
testcase_25 AC 106 ms
7,168 KB
testcase_26 AC 55 ms
7,808 KB
testcase_27 AC 140 ms
12,780 KB
testcase_28 AC 74 ms
11,384 KB
testcase_29 AC 54 ms
11,124 KB
testcase_30 AC 53 ms
7,680 KB
testcase_31 AC 219 ms
11,008 KB
testcase_32 AC 303 ms
15,460 KB
testcase_33 AC 275 ms
15,496 KB
testcase_34 AC 277 ms
15,636 KB
testcase_35 AC 259 ms
15,632 KB
testcase_36 AC 258 ms
15,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
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); }

  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