結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー hourenhouren
提出日時 2022-10-14 22:28:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 6,000 ms
コード長 1,833 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 185,072 KB
実行使用メモリ 20,544 KB
最終ジャッジ日時 2024-06-26 15:50:48
合計ジャッジ時間 13,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 92 ms
11,392 KB
testcase_04 AC 151 ms
15,788 KB
testcase_05 AC 85 ms
10,752 KB
testcase_06 AC 130 ms
14,684 KB
testcase_07 AC 154 ms
16,168 KB
testcase_08 AC 144 ms
15,492 KB
testcase_09 AC 73 ms
9,728 KB
testcase_10 AC 66 ms
9,088 KB
testcase_11 AC 106 ms
12,416 KB
testcase_12 AC 106 ms
12,676 KB
testcase_13 AC 74 ms
9,856 KB
testcase_14 AC 76 ms
10,012 KB
testcase_15 AC 172 ms
17,620 KB
testcase_16 AC 132 ms
14,928 KB
testcase_17 AC 57 ms
8,192 KB
testcase_18 AC 205 ms
20,544 KB
testcase_19 AC 199 ms
20,408 KB
testcase_20 AC 204 ms
20,464 KB
testcase_21 AC 202 ms
20,388 KB
testcase_22 AC 205 ms
20,520 KB
testcase_23 AC 202 ms
20,380 KB
testcase_24 AC 204 ms
20,500 KB
testcase_25 AC 201 ms
20,388 KB
testcase_26 AC 207 ms
20,420 KB
testcase_27 AC 204 ms
20,428 KB
testcase_28 AC 205 ms
20,248 KB
testcase_29 AC 206 ms
20,500 KB
testcase_30 AC 218 ms
20,472 KB
testcase_31 AC 205 ms
20,432 KB
testcase_32 AC 218 ms
20,388 KB
testcase_33 AC 204 ms
20,484 KB
testcase_34 AC 196 ms
20,392 KB
testcase_35 AC 190 ms
20,392 KB
testcase_36 AC 188 ms
20,380 KB
testcase_37 AC 186 ms
20,380 KB
testcase_38 AC 51 ms
11,004 KB
testcase_39 AC 87 ms
11,704 KB
testcase_40 AC 146 ms
20,388 KB
testcase_41 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:57:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   57 |     for(auto [d,l,r,i]:query){
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using T = tuple<ll,ll,ll,int>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
template <typename T>
struct BIT{
    int n;
    vector<T> data;
    BIT(int n=0) : n(n), data(n+1){}
    T sum(int i){
        T res = 0;
        for(; i; i -= i&-i){
            res += data[i];
        }
        return res;
    }
    void add(int i, T x){
        for(; i <= n; i += i&-i){
            data[i] += x;
        }
    }
};
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,q;
    cin >> n;
    BIT<ll> bit(n), ok(n);
    vector<P> a(n), t(n);
    rep(i,n){
        cin >> a[i].first >> t[i].first;
        t[i].first--;
        bit.add(i+1, a[i].first);
        a[i].first += t[i].first;
        a[i].second = t[i].second = i+1;
    }
    sort(all(a));
    sort(all(t));
    cin >> q;
    vector<ll> ans(q);
    vector<T> query(q);
    rep(i,q){
        ll d,l,r;
        cin >> d >> l >> r;
        l--;
        query[i] = {d,l,r,i};
    }
    sort(all(query));
    int nb = 0, ne = 0;
    for(auto [d,l,r,i]:query){
        while(nb<n && t[nb].first<d){
            ok.add(t[nb].second, 1);
            bit.add(t[nb].second, t[nb].first);
            nb++;
        }
        while(ne<n && a[ne].first<d){
            ok.add(a[ne].second, -1);
            bit.add(a[ne].second, -a[ne].first);
            ne++;
        }
        ans[i] = (bit.sum(r) - bit.sum(l)) - d * (ok.sum(r) - ok.sum(l));
    }
    rep(i,q) cout << ans[i] << '\n';
    return 0;
}
0