QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#776395#9104. Zayin and ForestTauLee01TL 109ms31300kbC++202.2kb2024-11-23 18:28:222024-11-23 18:28:22

Judging History

你现在查看的是最新测评结果

  • [2024-11-23 18:28:22]
  • 评测
  • 测评结果:TL
  • 用时:109ms
  • 内存:31300kb
  • [2024-11-23 18:28:22]
  • 提交

answer

#pragma GCC optimize(2)
#pragma GCC optimize(3,"Ofast","inline")
#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42;
#define endl '\n'
#endif

#define ll long long
#define int long long

const int Maxl = 0, Maxr = 1e18 + 10;
struct d_tree {
    struct op {
        ll num;
        int ls, rs;
    } tre[40000000];
    int cnt = 0;

    int build()//新建节点
    {   ++cnt;
        tre[cnt].num = tre[cnt].ls = tre[cnt].rs = 0;
        return cnt;
    }

    int upd(int x, ll pos, int val, ll l = Maxl, ll r = Maxr)
    {   if (!x)x = build();
        if (l == r) {tre[x].num += val; return x;}
        ll mid = (l + r) >> 1;
        if (pos <= mid)tre[x].ls = upd(tre[x].ls, pos, val, l, mid);
        if (pos > mid)tre[x].rs = upd(tre[x].rs, pos, val, mid + 1, r);
        tre[x].num = tre[tre[x].ls].num + tre[tre[x].rs].num;
        return x;
    }
    ll ask(int x, ll ql, ll qr, ll l = Maxl, ll r = Maxr)
    {   if (!x)return 0;
        if (l >= ql && r <= qr) {
            return tre[x].num;
        }
        ll mid = (l + r) >> 1, ans = 0;
        if (ql <= mid)ans += ask(tre[x].ls, ql, qr, l, mid);
        if (qr > mid)ans += ask(tre[x].rs, ql, qr, mid + 1, r);
        return ans;
    }
} tr;
ll nex(__int128 x, ll n) {
    __int128 ans = 0;
    for (int i = 0; i <= 62; ++i) {
        if (((x >> i) & 1) && (((x >> (i + 1)) & 1) == 0)) {
            ans += 1ll << (i + 1);
            for (int j = i + 2; j <= 62; ++j) {
                if ((x >> j) & 1) {
                    ans += 1ll << j;
                }
            }
            break;
        }
    }
    if (ans > n)return 0;
    return ans;
}
signed main()
{
    ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
    int m, val, op;
    ll n, l, r, x;
    cin >> n >> m;

    tr.build();

    for (int i = 1; i <= m; ++i) {
        cin >> op;
        if (op == 1) {
            cin >> x >> val;
            while (x <= n && x) {
                tr.upd(1, x, val);
                x = nex(x, n);
            }
        }
        else {
            cin >> l >> r;
            cout << tr.ask(1, l, r) << "\n";
        }
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 109ms
memory: 31300kb

input:

1000000000 20000
2 384578735 526547442
1 64211261 592970906
1 512065247 448267721
1 44993150 127180320
1 880319036 927623947
1 170536687 572121854
1 896600029 804033011
1 666246328 754201635
1 654066651 179982083
2 240989825 984888006
2 372004567 858916479
2 76127818 98606736
1 181794163 902842353
1...

output:

0
43148875202
17613404710
0
32808578044
28190043566
15641637055
78276219892
14955165236
20262224725
105057452192
17002492367
57916137452
27165464255
72766353838
39458327919
38294102627
264448717384
0
70928519548
279674530483
88885017175
111664599432
69703816663
211506104092
104120007714
34403738515
...

result:

ok 6649 lines

Test #2:

score: -100
Time Limit Exceeded

input:

1000000000000000000 100000
1 384578735 526547442
1 64211261 592970906
1 512065247 448267721
1 44993150 127180320
1 880319036 927623947
1 170536687 572121854
1 896600029 804033011
2 666246328 931651408754201635
1 654066651 179982083
1 984888006 240989825
1 372004567 858916479
1 76127818 98606736
1 18...

output:

144205553442
497561506762
903930740555
878459229726
689906696633
859703313829
735231510045
1177875391120
1461659121798
1612314483744
2027462020547
1991476058156
2381861014705
2033973986301
2117738140401
2946661001323
2187638958334
2593068002437
1854182975909
2262561461341
3038788266419
3070435321746...

result: