結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー みここみここ
提出日時 2022-12-12 06:02:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 947 ms / 6,000 ms
コード長 1,709 bytes
コンパイル時間 1,328 ms
コンパイル使用メモリ 100,784 KB
実行使用メモリ 27,372 KB
最終ジャッジ日時 2024-11-06 05:56:44
合計ジャッジ時間 34,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,552 KB
testcase_01 AC 3 ms
9,672 KB
testcase_02 AC 3 ms
9,680 KB
testcase_03 AC 322 ms
25,900 KB
testcase_04 AC 649 ms
26,368 KB
testcase_05 AC 319 ms
18,828 KB
testcase_06 AC 577 ms
25,968 KB
testcase_07 AC 636 ms
26,412 KB
testcase_08 AC 660 ms
26,136 KB
testcase_09 AC 262 ms
18,848 KB
testcase_10 AC 260 ms
18,592 KB
testcase_11 AC 470 ms
19,212 KB
testcase_12 AC 484 ms
19,656 KB
testcase_13 AC 307 ms
18,716 KB
testcase_14 AC 442 ms
12,108 KB
testcase_15 AC 758 ms
26,632 KB
testcase_16 AC 526 ms
26,540 KB
testcase_17 AC 288 ms
13,900 KB
testcase_18 AC 920 ms
27,176 KB
testcase_19 AC 928 ms
27,248 KB
testcase_20 AC 928 ms
27,232 KB
testcase_21 AC 931 ms
27,372 KB
testcase_22 AC 929 ms
27,300 KB
testcase_23 AC 933 ms
27,368 KB
testcase_24 AC 928 ms
27,280 KB
testcase_25 AC 934 ms
27,196 KB
testcase_26 AC 928 ms
27,316 KB
testcase_27 AC 932 ms
27,176 KB
testcase_28 AC 940 ms
27,288 KB
testcase_29 AC 938 ms
27,300 KB
testcase_30 AC 947 ms
27,168 KB
testcase_31 AC 934 ms
27,276 KB
testcase_32 AC 923 ms
27,248 KB
testcase_33 AC 841 ms
27,264 KB
testcase_34 AC 832 ms
27,304 KB
testcase_35 AC 833 ms
27,260 KB
testcase_36 AC 818 ms
27,280 KB
testcase_37 AC 826 ms
27,260 KB
testcase_38 AC 381 ms
10,824 KB
testcase_39 AC 468 ms
14,812 KB
testcase_40 AC 701 ms
27,168 KB
testcase_41 AC 4 ms
9,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/segtree>
#include <iostream>
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

using S = ll;

S op(S a, S b)
{
    return a + b;
}

S e()
{
    return 0;
}

struct query
{
    int d, l, r;
    int id;

    bool operator<(const query &q) const
    {
        return (d != q.d ? d < q.d : id < q.id);
    }
};

ll a[200005];
int t[200005];
P p[400005];
query qr[200005];
ll ans[200005];

int main()
{
    int n;
    cin >> n;
    for (int i = 0; i < n; i++)
    {
        cin >> a[i] >> t[i];
        p[i] = P(t[i] - 1, i);
        p[i + n] = P(t[i] + a[i] - 1, i + n);
    }
    sort(p, p + n * 2);
    segtree<S, op, e> asum(n), start(n), dcount(n);
    for (int i = 0; i < n; i++)
    {
        asum.set(i, a[i]);
        start.set(i, 0);
        dcount.set(i, 0);
    }
    int q;
    cin >> q;
    for (int i = 0; i < q; i++)
    {
        cin >> qr[i].d >> qr[i].l >> qr[i].r;
        qr[i].l--;
        qr[i].id = i;
    }
    sort(qr, qr + q);
    int j = 0;
    for (int i = 0; i < q; i++)
    {
        while (j < n * 2 && p[j].first < qr[i].d)
        {
            if (p[j].second < n)
            {
                start.set(p[j].second, p[j].first);
                dcount.set(p[j].second, 1);
            }
            else
            {
                asum.set(p[j].second - n, 0);
                start.set(p[j].second - n, 0);
                dcount.set(p[j].second - n, 0);
            }
            j++;
        }
        int l = qr[i].l, r = qr[i].r;
        ans[qr[i].id] = asum.prod(l, r) - (qr[i].d * dcount.prod(l, r) - start.prod(l, r));
    }
    for (int i = 0; i < q; i++)
    {
        cout << ans[i] << endl;
    }
}
0