結果
問題 | No.1332 Range Nearest Query |
ユーザー | KoD |
提出日時 | 2021-01-08 21:29:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 472 ms / 2,500 ms |
コード長 | 3,128 bytes |
コンパイル時間 | 1,105 ms |
コンパイル使用メモリ | 88,120 KB |
実行使用メモリ | 55,908 KB |
最終ジャッジ日時 | 2024-04-28 02:04:41 |
合計ジャッジ時間 | 19,055 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | 397 ms
49,024 KB |
testcase_04 | AC | 403 ms
49,152 KB |
testcase_05 | AC | 411 ms
49,152 KB |
testcase_06 | AC | 201 ms
55,776 KB |
testcase_07 | AC | 211 ms
55,780 KB |
testcase_08 | AC | 209 ms
55,648 KB |
testcase_09 | AC | 204 ms
55,780 KB |
testcase_10 | AC | 209 ms
55,780 KB |
testcase_11 | AC | 209 ms
55,908 KB |
testcase_12 | AC | 208 ms
55,784 KB |
testcase_13 | AC | 207 ms
55,780 KB |
testcase_14 | AC | 210 ms
55,908 KB |
testcase_15 | AC | 206 ms
55,780 KB |
testcase_16 | AC | 444 ms
55,780 KB |
testcase_17 | AC | 463 ms
55,780 KB |
testcase_18 | AC | 472 ms
55,652 KB |
testcase_19 | AC | 467 ms
55,784 KB |
testcase_20 | AC | 437 ms
55,780 KB |
testcase_21 | AC | 434 ms
55,780 KB |
testcase_22 | AC | 437 ms
55,780 KB |
testcase_23 | AC | 446 ms
55,652 KB |
testcase_24 | AC | 433 ms
55,780 KB |
testcase_25 | AC | 435 ms
55,784 KB |
testcase_26 | AC | 172 ms
55,780 KB |
testcase_27 | AC | 162 ms
55,904 KB |
testcase_28 | AC | 25 ms
5,376 KB |
testcase_29 | AC | 26 ms
5,376 KB |
testcase_30 | AC | 27 ms
5,376 KB |
testcase_31 | AC | 25 ms
5,376 KB |
testcase_32 | AC | 28 ms
5,376 KB |
testcase_33 | AC | 27 ms
5,376 KB |
testcase_34 | AC | 25 ms
5,376 KB |
testcase_35 | AC | 26 ms
5,376 KB |
testcase_36 | AC | 26 ms
5,376 KB |
testcase_37 | AC | 26 ms
5,376 KB |
testcase_38 | AC | 301 ms
29,568 KB |
testcase_39 | AC | 109 ms
5,376 KB |
testcase_40 | AC | 420 ms
54,052 KB |
testcase_41 | AC | 207 ms
12,544 KB |
testcase_42 | AC | 324 ms
27,904 KB |
testcase_43 | AC | 253 ms
18,688 KB |
testcase_44 | AC | 390 ms
42,228 KB |
testcase_45 | AC | 352 ms
37,712 KB |
testcase_46 | AC | 283 ms
25,216 KB |
testcase_47 | AC | 336 ms
33,664 KB |
ソースコード
#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; }