結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー 👑 emthrmemthrm
提出日時 2024-02-23 22:19:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,001 bytes
コンパイル時間 3,543 ms
コンパイル使用メモリ 274,052 KB
実行使用メモリ 40,988 KB
最終ジャッジ日時 2024-09-29 07:08:47
合計ジャッジ時間 12,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 280 ms
38,760 KB
testcase_10 AC 257 ms
38,740 KB
testcase_11 AC 259 ms
38,860 KB
testcase_12 AC 258 ms
38,884 KB
testcase_13 AC 261 ms
38,772 KB
testcase_14 AC 253 ms
38,776 KB
testcase_15 AC 256 ms
38,784 KB
testcase_16 AC 203 ms
36,464 KB
testcase_17 AC 198 ms
36,464 KB
testcase_18 AC 196 ms
36,512 KB
testcase_19 AC 201 ms
36,380 KB
testcase_20 AC 197 ms
36,428 KB
testcase_21 AC 206 ms
36,516 KB
testcase_22 AC 199 ms
36,424 KB
testcase_23 AC 152 ms
36,432 KB
testcase_24 AC 153 ms
36,420 KB
testcase_25 AC 152 ms
36,424 KB
testcase_26 AC 156 ms
36,540 KB
testcase_27 AC 155 ms
36,452 KB
testcase_28 AC 152 ms
36,436 KB
testcase_29 AC 155 ms
36,436 KB
testcase_30 AC 178 ms
36,544 KB
testcase_31 AC 182 ms
40,988 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n, a; cin >> n >> a;
  vector<int> x(n);
  for (int& x_i : x) cin >> x_i;
  int t; cin >> t;
  vector<int> l(t), r(t); REP(i, t) cin >> l[i] >> r[i];
  vector<int> pts;
  pts.reserve(n + 2 * t);
  ranges::copy(x, back_inserter(pts));
  ranges::copy(l, back_inserter(pts));
  ranges::copy(r, back_inserter(pts));
  ranges::sort(pts);
  pts.erase(unique(pts.begin(), pts.end()), pts.end());
  const int m = pts.size();
  REP(i, n) x[i] = distance(pts.begin(), ranges::lower_bound(pts, x[i]));
  REP(i, t) l[i] = distance(pts.begin(), ranges::lower_bound(pts, l[i]));
  REP(i, t) r[i] = distance(pts.begin(), ranges::lower_bound(pts, r[i]));
  vector<vector<int>> ins(m), era(m), queries(m);
  REP(i, n) ins[l[i]].emplace_back(i);
  REP(i, n) era[r[i]].emplace_back(i);
  REP(i, t) queries[x[i]].emplace_back(i);
  vector<int> ans(n, -1);
  set<int> sounds;
  REP(i, m) {
    for (const int id : ins[i]) sounds.emplace(id);
    if (!sounds.empty()) {
      for (const int id : queries[i]) ans[id] = *sounds.rbegin() + 1;
    }
    for (const int id : era[i]) sounds.erase(id);
  }
  for (const int ans_i : ans) cout << ans_i << '\n';
  return 0;
}
0