結果

問題 No.1675 Strange Minimum Query
ユーザー c--c--
提出日時 2021-09-13 19:45:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,709 bytes
コンパイル時間 4,714 ms
コンパイル使用メモリ 274,880 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-06-25 20:31:35
合計ジャッジ時間 15,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 185 ms
8,832 KB
testcase_04 AC 183 ms
11,904 KB
testcase_05 AC 46 ms
10,880 KB
testcase_06 AC 214 ms
9,728 KB
testcase_07 AC 230 ms
12,148 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 310 ms
20,480 KB
testcase_14 AC 264 ms
20,476 KB
testcase_15 AC 241 ms
20,536 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 48 ms
7,296 KB
testcase_18 AC 64 ms
8,064 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 216 ms
18,816 KB
testcase_23 AC 162 ms
10,444 KB
testcase_24 AC 155 ms
13,312 KB
testcase_25 AC 110 ms
8,960 KB
testcase_26 WA -
testcase_27 AC 158 ms
17,664 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 205 ms
12,160 KB
testcase_32 AC 274 ms
20,608 KB
testcase_33 AC 273 ms
20,480 KB
testcase_34 AC 274 ms
20,480 KB
testcase_35 AC 301 ms
20,480 KB
testcase_36 AC 299 ms
20,532 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);

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));
  reverse(all(query));

  ll prev = -1;
  vi tmp(n);
  iota(all(tmp), 0);
  set<ll> unused(all(tmp));
  set<ll> used_by_b;

  vi ans(n);
  for (auto [b, l, r] : query) {
    if (b != prev) {
      prev = b;
      used_by_b.clear();
    }

    auto itr = unused.lower_bound(l);
    if (itr == unused.end() || *itr >= r) {
      auto itr2 = used_by_b.lower_bound(l);
      if (itr2 == used_by_b.end() || *itr2 >= r) {
        cout << -1 << endl;
        return 0;
      }
    } else {
      while (itr != unused.end() && *itr < r) {
        ans[*itr] = b;
        used_by_b.insert(*itr);
        itr = unused.erase(itr);
      }
    }
  }

  for (auto i : unused) ans[i] = INF;
  rep(i, n) {
    cout << ans[i];
    if (i == n - 1) {
      cout << endl;
    } else {
      cout << " ";
    }
  }
  return 0;
}
0