結果

問題 No.1332 Range Nearest Query
ユーザー KoDKoD
提出日時 2021-01-08 21:29:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 432 ms / 2,500 ms
コード長 3,128 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 88,336 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-11-16 10:13:55
合計ジャッジ時間 16,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 363 ms
49,024 KB
testcase_04 AC 341 ms
49,024 KB
testcase_05 AC 345 ms
49,152 KB
testcase_06 AC 181 ms
55,784 KB
testcase_07 AC 179 ms
55,908 KB
testcase_08 AC 178 ms
55,908 KB
testcase_09 AC 185 ms
55,776 KB
testcase_10 AC 193 ms
55,904 KB
testcase_11 AC 178 ms
55,904 KB
testcase_12 AC 182 ms
55,904 KB
testcase_13 AC 177 ms
55,780 KB
testcase_14 AC 179 ms
55,908 KB
testcase_15 AC 178 ms
55,784 KB
testcase_16 AC 379 ms
55,908 KB
testcase_17 AC 369 ms
55,784 KB
testcase_18 AC 366 ms
55,904 KB
testcase_19 AC 372 ms
55,784 KB
testcase_20 AC 371 ms
55,780 KB
testcase_21 AC 373 ms
55,780 KB
testcase_22 AC 372 ms
55,780 KB
testcase_23 AC 371 ms
55,780 KB
testcase_24 AC 432 ms
55,784 KB
testcase_25 AC 370 ms
55,784 KB
testcase_26 AC 159 ms
55,904 KB
testcase_27 AC 145 ms
55,776 KB
testcase_28 AC 23 ms
5,248 KB
testcase_29 AC 24 ms
5,248 KB
testcase_30 AC 24 ms
5,248 KB
testcase_31 AC 22 ms
5,248 KB
testcase_32 AC 25 ms
5,248 KB
testcase_33 AC 25 ms
5,248 KB
testcase_34 AC 23 ms
5,248 KB
testcase_35 AC 23 ms
5,248 KB
testcase_36 AC 23 ms
5,248 KB
testcase_37 AC 24 ms
5,248 KB
testcase_38 AC 263 ms
29,440 KB
testcase_39 AC 97 ms
5,248 KB
testcase_40 AC 366 ms
54,184 KB
testcase_41 AC 165 ms
12,456 KB
testcase_42 AC 256 ms
28,032 KB
testcase_43 AC 208 ms
18,620 KB
testcase_44 AC 327 ms
42,348 KB
testcase_45 AC 297 ms
37,712 KB
testcase_46 AC 240 ms
25,344 KB
testcase_47 AC 279 ms
33,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "main.cpp"

/**
 * @title Template
 */

#include <iostream>
#include <algorithm>
#include <utility>
#include <numeric>
#include <vector>
#include <array>
#include <cassert>

#line 2 "/Users/kodamankod/Desktop/cpp_programming/Library/other/range.cpp"

#line 4 "/Users/kodamankod/Desktop/cpp_programming/Library/other/range.cpp"

class range {
  struct iter {
    std::size_t itr;
    constexpr iter(std::size_t pos) noexcept: itr(pos) { }
    constexpr void operator ++ () noexcept { ++itr; }
    constexpr bool operator != (iter other) const noexcept { return itr != other.itr; }
    constexpr std::size_t operator * () const noexcept { return itr; }
  };

  struct reviter {
    std::size_t itr;
    constexpr reviter(std::size_t pos) noexcept: itr(pos) { }
    constexpr void operator ++ () noexcept { --itr; }
    constexpr bool operator != (reviter other) const noexcept { return itr != other.itr; }
    constexpr std::size_t operator * () const noexcept { return itr; }
  };

  const iter first, last;

public:
  constexpr range(std::size_t first, std::size_t last) noexcept: first(first), last(std::max(first, last)) { }
  constexpr iter begin() const noexcept { return first; }
  constexpr iter end() const noexcept { return last; }
  constexpr reviter rbegin() const noexcept { return reviter(*last - 1); } 
  constexpr reviter rend() const noexcept { return reviter(*first - 1); } 
};

/**
 * @title Range
 */
#line 15 "main.cpp"

using i32 = std::int32_t;
using i64 = std::int64_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;
using isize = std::ptrdiff_t;
using usize = std::size_t;

constexpr i32 inf32 = (u32) ~0 >> 2;
constexpr i64 inf64 = (u64) ~0 >> 2;

template <class T>
using Vec = std::vector<T>;

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(nullptr);
  usize N;
  std::cin >> N;
  Vec<u32> X(N);
  for (auto &x: X) {
    std::cin >> x;
  }
  Vec<Vec<u32>> seg(2 * N);
  for (auto i: range(0, N)) {
    seg[N + i].push_back(X[i]);
  }
  for (usize i = N; --i > 0;) {
    seg[i].reserve(seg[i * 2].size() + seg[i * 2 + 1].size());
    std::copy(seg[i * 2].begin(), seg[i * 2].end(), std::back_inserter(seg[i]));
    std::copy(seg[i * 2 + 1].begin(), seg[i * 2 + 1].end(), std::back_inserter(seg[i]));
    std::inplace_merge(seg[i].begin(), seg[i].begin() + seg[i * 2].size(), seg[i].end());
  }
  usize Q;
  std::cin >> Q;
  const auto calc = [&](const std::vector<u32> &vec, const u32 val) {
    const auto itr = std::lower_bound(vec.cbegin(), vec.cend(), val);
    if (itr == vec.end()) {
      return val - *std::prev(itr);
    }
    if (itr == vec.begin()) {
      return *itr - val;
    }
    return std::min(val - *std::prev(itr), *itr - val);
  };
  while (Q--) {
    usize l, r;
    u32 x;
    std::cin >> l >> r >> x;
    l -= 1;
    l += N;
    r += N;
    u32 ans = inf32;
    while (l < r) {
      if (l & 1) {
        ans = std::min(ans, calc(seg[l], x));
        l += 1;
      }
      l >>= 1;
      if (r & 1) {
        r -= 1;
        ans = std::min(ans, calc(seg[r], x));
      }
      r >>= 1;
    } 
    std::cout << ans << '\n';
  }
  return 0;
}
0