結果

問題 No.1675 Strange Minimum Query
ユーザー moondrinkmoondrink
提出日時 2021-09-24 14:07:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 1,338 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 182,492 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-07-05 09:42:34
合計ジャッジ時間 10,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 162 ms
6,528 KB
testcase_04 AC 159 ms
9,472 KB
testcase_05 AC 41 ms
9,728 KB
testcase_06 AC 195 ms
6,912 KB
testcase_07 AC 209 ms
9,216 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 131 ms
12,288 KB
testcase_11 AC 38 ms
10,624 KB
testcase_12 AC 144 ms
13,312 KB
testcase_13 AC 262 ms
16,468 KB
testcase_14 AC 234 ms
16,512 KB
testcase_15 AC 216 ms
16,512 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 39 ms
6,528 KB
testcase_18 AC 55 ms
6,912 KB
testcase_19 AC 84 ms
13,312 KB
testcase_20 AC 155 ms
12,416 KB
testcase_21 AC 146 ms
14,592 KB
testcase_22 AC 183 ms
15,488 KB
testcase_23 AC 143 ms
8,320 KB
testcase_24 AC 133 ms
11,008 KB
testcase_25 AC 96 ms
7,424 KB
testcase_26 AC 53 ms
8,192 KB
testcase_27 AC 133 ms
14,976 KB
testcase_28 AC 79 ms
11,392 KB
testcase_29 AC 64 ms
12,928 KB
testcase_30 AC 64 ms
8,576 KB
testcase_31 AC 211 ms
9,472 KB
testcase_32 AC 235 ms
16,512 KB
testcase_33 AC 233 ms
16,512 KB
testcase_34 AC 241 ms
16,512 KB
testcase_35 AC 283 ms
16,512 KB
testcase_36 AC 259 ms
16,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:26:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   26 |   for (auto [b, l, r] : query) {
      |             ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define all(v) v.begin(),v.end()

int main() {
  int n, q;
  cin >> n >> q;
  vector<array<int, 3>> query(q);
  for (int i = 0; i < q; i++) {
    int l, r, b;
    cin >> l >> r >> b;
    l --;  // 半開区間 [l, r)
    r --;
    query[i] = {b, l, r};
  }
  sort(all(query));
  reverse(all(query));

  int prev = -1;
  vector<int> tmp(n);
  for(int i = 0;i < n;i ++ ) tmp[i] = i;
  set<int> unused(all(tmp));  // 未使用的位置集合
  set<int> used_by_b;  // 已经使用的位置集合

  vector<int> 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) {  // b_i が同じ他のクエリで区間内の i を使ったか
        cout << -1 << "\n";
        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] = int(1e9);
  for (int i = 0; i < n; i++) cout << ans[i] << (i + 1 == n ? '\n' : ' ');
  return 0;
}
0