UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#211245#2398. 游戏mengxiangjia2056ms1208kbC++115.0kb2024-08-10 09:14:112024-08-10 12:34:20

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#ifdef ONLINE_JUDGE
#define getchar getchar_unlocked
#endif
namespace FastIO
{
    char write_cache[40];
    template <class T>
    inline const T read() noexcept
    {
        T x(0);
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        return f ? -x : x;
    }
    template <class T>
    inline const void read(T &x) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        x = f ? -x : x;
    }
    template <class T, class... P>
    inline const void read(T &x, P &...ark) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        x = f ? -x : x;
        read(ark...);
    }
    template <class T>
    inline const void readu(T &x) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
    }
    template <class T>
    inline const T readu() noexcept
    {
        T x(0);
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        return x;
    }
    template <class T, class... P>
    inline const void readu(T &x, P &...ark) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        readu(ark...);
    }
    template <class T>
    inline const void readArr(T *begin, T *end) noexcept
    {
        while (begin < end)
        {
            *begin = 0;
            char ch(getchar());
            bool f(0);
            while (ch < '0' || ch > '9')
                f ^= ch == '-', ch = getchar();
            while (ch >= '0' && ch <= '9')
                *begin = (*begin << 1) + (*begin << 3) + (ch ^ 48), ch = getchar();
            *begin = f ? -*begin : *begin;
        }
    }
    template <class T>
    inline const void readArr(T *begin, int cnt) noexcept
    {
        while (cnt--)
        {
            read(*begin);
            ++begin;
        }
    }
    template <class T>
    inline const void write(T x) noexcept
    {
        if (x < 0)
            putchar('-'), x = -x;
        int cnt = 0;
        while (x)
            write_cache[cnt++] = x % 10 ^ 48, x /= 10;
        if (!cnt)
            putchar('0');
        else
            while (cnt--)
                putchar(write_cache[cnt]);
    }
    template <char end = ' ', class T, class... ARK>
    inline const void write(T &x, ARK &...ark) noexcept
    {
        write(x);
        putchar(end);
        write(ark...);
    }
    template <char end = '\n', class T>
    inline const void println(T x) noexcept
    {
        if (x < 0)
            putchar('-'), x = -x;
        int cnt = 0;
        while (x)
            write_cache[cnt++] = x % 10 ^ 48, x /= 10;
        if (!cnt)
            putchar('0');
        else
            while (cnt--)
                putchar(write_cache[cnt]);
        putchar(end);
    }
    template <char sep = ' ', char endl = '\n', class T>
    inline const void writeArr(T *begin, T *end) noexcept
    {
        while (begin < end)
            write(*begin), putchar(sep), ++begin;
        putchar(endl);
    }
    template <char sep = ' ', char end = '\n', class T>
    inline const void writeArr(T *arr, int cnt)
    {
        while (cnt--)
        {
            write(*arr);
            putchar(sep);
            ++arr;
        }
        putchar(end);
    }
}

int n, m, op, l, r, val;
ll num[1000005];
int main()
{
    FastIO::read(n, m);
    while (m--)
    {
        FastIO::read(op, l, r);
        switch (op)
        {
        case 1:
            val = l;
            l = r;
            FastIO::read(r);
            for (int i = 1; i <= r - l + 1; ++i)
            {
                num[l + i - 1] += val * i;
            }
            break;
        case 2:
            ll ans(0);
            for (int i = 0; i < r - l + 1; ++i)
            {
                ans += num[l + i];
            }
            FastIO::println(ans);
        }
    }
    return 0;
}

Details

小提示:点击横条可展开更详细的信息

Test #1:

score: 10
Accepted
time: 28ms
memory: 1204kb

input:

10000 10000
2 7160 9968
1 -473 6964 8476
1 -153 5216 7023
2 6352 6868
1 -323 2338 2855
1 415 8414 88...

output:

0
-110345895
-118168581
-43417983
-4860827434
-604843653
-2613457133
-534205626
-89290630
484290874
...

result:

ok 5015 lines

Test #2:

score: 10
Accepted
time: 28ms
memory: 1208kb

input:

10000 10000
1 326 2291 8264
2 2344 3512
1 146 4506 4804
1 342 1373 4495
1 -267 929 3525
1 444 3384 8...

output:

243137972
7529843014
0
11315350608
10741570136
-23729193
8497340876
11134190564
4752384896
166579811...

result:

ok 5048 lines

Test #3:

score: 0
Time Limit Exceeded

input:

666666 10000
1 92 555251 586462
1 393 28541 523118
1 448 17256 369367
1 -28 89257 596132
1 -338 3136...

output:


result:


Test #4:

score: 0
Time Limit Exceeded

input:

666666 50000
1 -249 309981 333889
1 477 309512 463171
1 0 71655 592642
1 45 191249 527454
1 55 38872...

output:


result:


Test #5:

score: 0
Time Limit Exceeded

input:

666666 100000
1 -183 598736 630118
1 -337 605875 639236
1 -62 265069 340682
1 -96 370300 571646
1 -1...

output:


result:


Test #6:

score: 0
Time Limit Exceeded

input:

666666 100000
2 121929 379928
2 34550 66844
1 96 338911 637923
2 161666 370147
1 -282 313713 463127
...

output:

0
0
46837507488
-2144565871356
12891851830
8888329560532
3600670974792
5838384797676
5198143259786
3...

result:


Test #7:

score: 0
Time Limit Exceeded

input:

750000 100000
1 -318 454211 721481
2 239247 294171
2 52513 339575
2 424462 638364
2 683282 740790
1 ...

output:

0
0
-5392147899330
-3014688113400
-1060371486324
-3974117952270
273653038350
-222431173482
371388923...

result:


Test #8:

score: 0
Time Limit Exceeded

input:

1000000 100000
1 -108 318728 708230
1 -242 8738 411540
1 -119 458000 972357
2 368015 850304
1 -182 1...

output:

-21232196185685
-20910538239000
-3733012342070
-66375750961180
-16926598739637
-12520509636427
-5091...

result:


Test #9:

score: 0
Time Limit Exceeded

input:

1000000 100000
2 347033 984386
2 277881 323793
1 431 735974 973576
2 782909 863840
1 -22 379088 6406...

output:

0
0
3048712203338
-275350879342
2861261347158
10963743541855
980271778300
5329951205134
712899593630...

result:


Test #10:

score: 0
Time Limit Exceeded

input:

1000000 100000
1 -238 406279 814973
1 -425 637451 721356
1 237 340114 658854
2 279214 591961
2 17862...

output:

3413253435344
4249749642085
3270374154195
-7408047958251
0
23029818546288
18074770628646
28102134374...

result: