結果

問題 No.1675 Strange Minimum Query
ユーザー simansiman
提出日時 2022-03-09 03:37:25
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 2,214 bytes
コンパイル時間 4,902 ms
コンパイル使用メモリ 150,464 KB
実行使用メモリ 32,652 KB
最終ジャッジ日時 2024-09-12 22:13:00
合計ジャッジ時間 17,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 363 ms
18,792 KB
testcase_04 AC 361 ms
20,408 KB
testcase_05 AC 42 ms
8,796 KB
testcase_06 AC 494 ms
21,756 KB
testcase_07 AC 530 ms
24,412 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 221 ms
16,844 KB
testcase_11 AC 54 ms
9,676 KB
testcase_12 AC 242 ms
17,936 KB
testcase_13 AC 262 ms
18,640 KB
testcase_14 AC 415 ms
32,544 KB
testcase_15 AC 410 ms
32,652 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 58 ms
7,040 KB
testcase_18 AC 83 ms
7,908 KB
testcase_19 AC 121 ms
13,256 KB
testcase_20 AC 259 ms
16,928 KB
testcase_21 AC 237 ms
17,324 KB
testcase_22 AC 301 ms
19,756 KB
testcase_23 AC 245 ms
13,268 KB
testcase_24 AC 216 ms
14,008 KB
testcase_25 AC 155 ms
9,980 KB
testcase_26 AC 78 ms
9,164 KB
testcase_27 AC 208 ms
16,728 KB
testcase_28 AC 108 ms
12,160 KB
testcase_29 AC 83 ms
11,524 KB
testcase_30 AC 76 ms
8,856 KB
testcase_31 AC 309 ms
14,736 KB
testcase_32 AC 409 ms
22,656 KB
testcase_33 AC 399 ms
22,648 KB
testcase_34 AC 405 ms
22,808 KB
testcase_35 AC 446 ms
22,008 KB
testcase_36 AC 444 ms
22,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Command {
  int type;
  int num;

  Command(int type = -1, int num = -1) {
    this->type = type;
    this->num = num;
  }
};

const double R = 1e-10;

struct Node {
  int i;
  int v;

  Node(int i = -1, int v = -1) {
    this->i = i;
    this->v = v;
  }

  bool operator>(const Node &n) const {
    return v - i * R < n.v - n.i * R;
  }
};

struct Query {
  int l;
  int r;
  int B;

  Query(int l = -1, int r = -1, int B = -1) {
    this->l = l;
    this->r = r;
    this->B = B;
  }

  bool operator>(const Query &n) const {
    return B - l * R < n.B - n.l * R;
  }
};

int main() {
  int N, Q;
  cin >> N >> Q;

  vector<Command> commands[N + 2];
  priority_queue <Query, vector<Query>, greater<Query>> p_query;
  for (int i = 0; i < Q; ++i) {
    int l, r, B;
    cin >> l >> r >> B;

    commands[l].push_back(Command(0, B));
    commands[r + 1].push_back(Command(1, B));
    p_query.push(Query(l, r, B));
  }

  map<int, int> counter;
  priority_queue <int> pque;
  pque.push(1);
  counter[1]++;
  int ans[N + 1];

  for (int i = 1; i <= N; ++i) {
    for (Command &cmd : commands[i]) {
      if (cmd.type == 0) {
        pque.push(cmd.num);
        counter[cmd.num]++;
      } else {
        counter[cmd.num]--;
      }
    }

    while (not pque.empty() && counter[pque.top()] == 0) {
      pque.pop();
    }

    ans[i] = pque.top();
  }

  priority_queue <Node, vector<Node>, greater<Node>> pque2;
  for (int i = 1; i <= N; ++i) {
    pque2.push(Node(i, ans[i]));
  }

  while (not pque2.empty()) {
    Node node = pque2.top();
    pque2.pop();

    while (not p_query.empty()) {
      Query q = p_query.top();
      if (q.B != node.v) break;

      if (q.l <= node.i && node.i <= q.r) {
        p_query.pop();
      } else {
        break;
      }
    }
  }

  if (p_query.empty()) {
    for (int i = 1; i <= N; ++i) {
      cout << ans[i];
      if (i < N) cout << " ";
    }
    cout << endl;
  } else {
    cout << -1 << endl;
  }

  return 0;
}
0