結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー first_vilfirst_vil
提出日時 2022-06-17 22:42:24
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 3,000 ms
コード長 4,834 bytes
コンパイル時間 4,129 ms
コンパイル使用メモリ 208,164 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-04-17 15:01:11
合計ジャッジ時間 11,738 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 10 ms
12,544 KB
testcase_03 AC 102 ms
16,384 KB
testcase_04 AC 123 ms
13,952 KB
testcase_05 AC 90 ms
12,416 KB
testcase_06 AC 141 ms
19,072 KB
testcase_07 AC 166 ms
19,328 KB
testcase_08 AC 126 ms
15,488 KB
testcase_09 AC 145 ms
20,608 KB
testcase_10 AC 137 ms
14,720 KB
testcase_11 AC 78 ms
9,728 KB
testcase_12 AC 151 ms
15,616 KB
testcase_13 AC 91 ms
10,240 KB
testcase_14 AC 92 ms
10,752 KB
testcase_15 AC 88 ms
10,368 KB
testcase_16 AC 117 ms
16,768 KB
testcase_17 AC 232 ms
23,296 KB
testcase_18 AC 205 ms
22,144 KB
testcase_19 AC 239 ms
23,808 KB
testcase_20 AC 47 ms
12,288 KB
testcase_21 AC 64 ms
16,384 KB
testcase_22 AC 108 ms
11,264 KB
testcase_23 AC 60 ms
11,904 KB
testcase_24 AC 79 ms
8,960 KB
testcase_25 AC 211 ms
18,432 KB
testcase_26 AC 213 ms
21,504 KB
testcase_27 AC 37 ms
6,656 KB
testcase_28 AC 94 ms
18,560 KB
testcase_29 AC 217 ms
24,224 KB
testcase_30 AC 170 ms
21,980 KB
testcase_31 AC 100 ms
18,688 KB
testcase_32 AC 283 ms
27,776 KB
testcase_33 AC 245 ms
28,672 KB
testcase_34 AC 262 ms
28,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
template<class T> using V = vector<T>;
using VI = V<int>;
using VL = V<ll>;
using VS = V<string>;
template<class T> using PQ = priority_queue<T, V<T>, greater<T>>;
using graph = V<VI>;
template<class T> using w_graph = V<V<pair<int, T>>>;
#define FOR(i,a,n) for(int i=(a);i<(n);++i)
#define eFOR(i,a,n) for(int i=(a);i<=(n);++i)
#define rFOR(i,a,n) for(int i=(n)-1;i>=(a);--i)
#define erFOR(i,a,n) for(int i=(n);i>=(a);--i)
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define inside(h,w,y,x) (unsigned(y)<h&&unsigned(x)<w)
#ifdef _DEBUG
#define line cout << "-----------------------------\n"
#define stop system("pause")
#endif
constexpr ll INF = 1000000000;
constexpr ll LLINF = 1LL << 61;
constexpr ll mod = 1000000007;
constexpr ll MOD = 998244353;
constexpr ld eps = 1e-10;
constexpr int dy[]{ -1,0,1,0 }, dx[]{ 0,1,0,-1 };
template<class T> inline bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; }return false; }
template<class T> inline bool chmin(T& a, const T& b) { if (a > b) { a = b; return true; }return false; }
inline void init() { cin.tie(nullptr); cout.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); }
template<class T> inline istream& operator>>(istream& is, V<T>& v) { for (auto& a : v)is >> a; return is; }
template<class T, class U> inline istream& operator>>(istream& is, pair<T, U>& p) { is >> p.first >> p.second; return is; }
template<class T> inline V<T> vec(size_t a) { return V<T>(a); }
template<class T> inline V<T> defvec(T def, size_t a) { return V<T>(a, def); }
template<class T, class... Ts> inline auto vec(size_t a, Ts... ts) { return V<decltype(vec<T>(ts...))>(a, vec<T>(ts...)); }
template<class T, class... Ts> inline auto defvec(T def, size_t a, Ts... ts) { return V<decltype(defvec<T>(def, ts...))>(a, defvec<T>(def, ts...)); }
template<class T> inline void print(const T& a) { cout << a << "\n"; }
template<class T, class... Ts> inline void print(const T& a, const Ts&... ts) { cout << a << " "; print(ts...); }
template<class T> inline void print(const V<T>& v) { for (int i = 0; i < v.size(); ++i)cout << v[i] << (i == v.size() - 1 ? "\n" : " "); }
template<class T> inline void print(const V<V<T>>& v) { for (auto& a : v)print(a); }
template<class T> inline constexpr const T cumsum(const V<T>& a, int l, int r) { return 0 <= l && l <= r && r < a.size() ? a[r] - (l == 0 ? 0 : a[l - 1]) : 0; }//[l,r]
template<class T> inline constexpr const T min(const V<T>& v) { return *min_element(all(v)); }
template<class T> inline constexpr const T max(const V<T>& v) { return *max_element(all(v)); }
template<class T> inline V<T>& operator++(V<T>& v) { for (T& a : v)++a; return v; }
template<class T> inline V<T>& operator--(V<T>& v) { for (T& a : v)--a; return v; }

template <class T> class BinaryIndexedTree {
    int n;
    vector<T> dat;
public:
    BinaryIndexedTree() {}
    BinaryIndexedTree(int n) : n(n), dat(n + 1) {};
    BinaryIndexedTree(int n, T a) : n(n), dat(n + 1) {
        eFOR(i, 1, n) {
            dat[i] += a;
            if (i + (i & -i) <= n) dat[i + (i & -i)] += dat[i];
        }
    }
    BinaryIndexedTree(V<T> v) : n(v.size()), dat(n + 1) {
        eFOR(i, 1, n) {
            dat[i] += v[i - 1];
            if (i + (i & -i) <= n) dat[i + (i & -i)] += dat[i];
        }
    }
    void add(int i, T a) {
        for (++i; i <= n; i += i & -i) dat[i] += a;
    }
    T sum(int r) {  // sum of [0,r)
        T res = 0;
        for (; r; r -= r & -r) res += dat[r];
        return res;
    }
    T sum(int l, int r) {  // sum of [l,r)
        if (l < 0 || n < r || l > r) return 0;
        return sum(r) - sum(l);
    }
    int lower_bound(T a) {
        int res = 0, k = 1;
        for (; k * 2 <= n; k *= 2);
        for (; k; k /= 2) {
            if (res + k <= n && a > dat[res + k]) {
                a -= dat[res + k];
                res += k;
            }
        }
        return res;
    }
};

int main() {
    init();

    int n, k, q; cin >> n >> k >> q;

    VI col(k);
    V<V<pair<int, int>>> task(n);
    FOR(i, 0, k) {
        int l, r, c, h; cin >> l >> r >> c >> h;
        --l;
        col[i] = c;
        task[l].emplace_back(i, h);
        task[r].emplace_back(i, -h);
    }


    VI ans(q);
    V<V<pair<int, ll>>> query(n);
    FOR(i, 0, q) {
        int l; ll x; cin >> l >> x;
        --l;
        query[l].emplace_back(i, x);
    }
    BinaryIndexedTree<ll> bit(k);
    FOR(j, 0, n) {
        for (auto [i, h] : task[j]) {
            bit.add(i, h);
        }
        for (auto [i, x] : query[j]) {
            int idx = bit.lower_bound(x);
            if (idx == k)ans[i] = -1;
            else ans[i] = col[idx];
        }
    }

    for (int x : ans)print(x);

    return 0;
}
0