結果

問題 No.878 Range High-Element Query
ユーザー 👑 hitonanodehitonanode
提出日時 2019-10-26 00:39:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 5,614 bytes
コンパイル時間 3,079 ms
コンパイル使用メモリ 194,160 KB
実行使用メモリ 20,648 KB
最終ジャッジ日時 2023-10-11 12:51:01
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 3 ms
4,352 KB
testcase_03 AC 2 ms
4,352 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,352 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 AC 3 ms
4,348 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 164 ms
18,180 KB
testcase_12 AC 112 ms
19,220 KB
testcase_13 AC 126 ms
13,284 KB
testcase_14 AC 94 ms
12,320 KB
testcase_15 AC 112 ms
18,712 KB
testcase_16 AC 159 ms
20,304 KB
testcase_17 AC 172 ms
20,648 KB
testcase_18 AC 174 ms
20,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3", "unroll-loops")
#pragma GCC target("avx")
#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) ((lint)(x).size())
#define POW2(n) (1LL << (n))
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template<typename T> void ndarray(vector<T> &vec, int len) { vec.resize(len); }
template<typename T, typename... Args> void ndarray(vector<T> &vec, int len, Args... args) { vec.resize(len); for (auto &v : vec) ndarray(v, args...); }
template<typename T> bool mmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; }
template<typename T> bool mmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }
template<typename T1, typename T2> pair<T1, T2> operator+(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first + r.first, l.second + r.second); }
template<typename T1, typename T2> pair<T1, T2> operator-(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first - r.first, l.second - r.second); }
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }
///// This part below is only for debug, not used /////
template<typename T> ostream &operator<<(ostream &os, const vector<T> &vec){ os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T> ostream &operator<<(ostream &os, const deque<T> &vec){ os << "deq["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T> ostream &operator<<(ostream &os, const set<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const unordered_set<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const multiset<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const unordered_multiset<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T1, typename T2> ostream &operator<<(ostream &os, const pair<T1, T2> &pa){ os << "(" << pa.first << "," << pa.second << ")"; return os; }
template<typename TK, typename TV> ostream &operator<<(ostream &os, const map<TK, TV> &mp){ os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; }
template<typename TK, typename TV> ostream &operator<<(ostream &os, const unordered_map<TK, TV> &mp){ os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; }
#define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl;
///// END /////


struct SegTree
{
    using T_NODE = vector<int>;
    using T_QUERY = int;
    using T_RETVAL = int;  // number
    T_NODE ZeroNode = vector<int>{};
    T_RETVAL ZeroRetval = 0;

    int N;
    int head;
    vector<T_NODE> x;
    static T_NODE node_merger(const T_NODE &l, const T_NODE &r)
    {
        /* node merging */
        if (l.empty()) return r;
        T_NODE ret = l;
        REP(i, r.size()) if (r[i] > ret.back())
        {
            ret.insert(ret.end(), r.begin() + i, r.end());
            break;
        }
        return ret;
    }
    static T_RETVAL get_query(const T_NODE &node, T_QUERY &q)
    {
        /* retval calculating */
        auto itr = upper_bound(node.begin(), node.end(), q);
        if (itr == node.end()) return 0;
        else
        {
            q = *prev(node.end());
            return node.end() - itr;
        }
    }
    T_RETVAL _get(int begin, int end, int pos, int l, int r, T_QUERY &q) const
    {
        if (r <= begin or l >= end) return ZeroRetval;
        else if (l >= begin and r <= end) return get_query(x[pos], q);
        else
        {
            int a = _get(begin, end, 2 * pos + 1, l, (l + r) / 2, q);
            int b = _get(begin, end, 2 * pos + 2, (l + r) / 2, r, q);
            return a + b;
        }
    }
    SegTree(int N = 0) : N(N)
    {
        int N_tmp = 1; while (N_tmp < N) N_tmp <<= 1;
        x.assign(N_tmp * 2, ZeroNode), head = N_tmp - 1;
    }
    SegTree(const vector<T_NODE> &vals) : N(vals.size())
    {
        int N_tmp = 1; while (N_tmp < N) N_tmp <<= 1;
        x.assign(N_tmp*2, ZeroNode), head = N_tmp - 1;
        copy(vals.begin(), vals.end(), x.begin() + head);
        IREP(i, head) x[i] = node_merger(x[i * 2 + 1], x[i * 2 + 2]);
    }
    void update(int pos, T_NODE val) { pos += head, x[pos] = val; while (pos) pos = (pos - 1) / 2, x[pos] = node_merger(x[pos*2+1], x[pos*2+2]); }
    T_RETVAL get(int begin, int end, T_QUERY q) const { return _get(begin, end, 0, 0, (int)x.size() / 2, q); }
    // friend ostream &operator<<(ostream &os, const SegTree &s) { os << "["; REP(i, s.N) os << s.get(i, i + 1) << ","; os << "]"; return os; }
};


int main()
{
    int N, Q;
    cin >> N >> Q;
    vector<vector<int>> A(N);
    REP(i, N)
    {
        lint a;
        cin >> a;
        A[i].emplace_back(a);
    }
    SegTree st(A);

    REP(_, Q)
    {
        int q, l, r;
        cin >> q >> l >> r;
        int x = 0;
        printf("%d\n", st.get(l - 1, r, x));
    }
}
0