QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#326877#8226. 堆操作练习题2NATURAL660 1994ms39100kbC++142.9kb2024-02-14 12:02:442024-02-14 12:02:44

Judging History

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

  • [2024-05-22 20:40:58]
  • hack成功,自动添加数据
  • (/hack/631)
  • [2024-02-14 12:02:44]
  • 评测
  • 测评结果:60
  • 用时:1994ms
  • 内存:39100kb
  • [2024-02-14 12:02:44]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define mod 1000000007
#define ls (rt<<1)
#define rs (rt<<1|1)
inline int qread()
{
    int a=0,f=1;char ch=getchar();
    while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
    while(isdigit(ch)){(a*=10)+=(ch^48);ch=getchar();}
    return a*f;
}
int n,m,h,a[300010],b[300010],OP[500010],X[500010],Y[500010],ans[500010],dp[300010],siz[300010];
vector<int>S[300010],s;
multiset<int>st;
struct bit
{
    int val[1000010],V=1000000;
    inline void adds(int p,int x){for(;p<=V;p+=p&-p)val[p]+=x;return ;}
    inline int Qs(int p){int an=0;for(;p;p-=p&-p)an+=val[p];return an;}
}t;
inline void dfs(int rt)
{
    if(rt>n)return ;b[rt]=a[rt];
    for(int i:S[rt])s.emplace_back(i);
    dfs(ls);dfs(rs);
    return ;
}
inline int get_pos(int rt)
{
	if(!b[rt])return 0;
    while(ls<=n)
    {
        if(!b[ls]&&!b[rs])break;
        if(b[ls]>b[rs])rt=ls;
        else rt=rs;
    }
    return rt;
}
inline void POP(int rt)
{
    b[rt]=0;
    while(ls<=n)
    {
        if(!b[ls]&&!b[rs])break;
        if(b[ls]>b[rs])swap(b[rt],b[ls]),rt=ls;
        else swap(b[rt],b[rs]),rt=rs;
    }
    return ;
}
inline int qpow(long long x,int y)
{
    long long cx=1;
    while(y)
    {
        (y&1)&&((cx*=x)%=mod);
        (x*=x)%=mod;
        y>>=1;
    }
    return cx;
}
inline void solve(int rt)
{
    s.clear();
    dfs(rt);
    int p=get_pos(rt);
    while(p)
    {
        dp[p]=b[rt];
        POP(rt);
        p=get_pos(rt);
    }
    sort(s.begin(),s.end());
    for(int i:s)
    {
        if(OP[i]==1)
        {
            if(Y[i]==1)st.insert(dp[X[i]]);
            else t.adds(dp[X[i]],1);
        }
        else if(OP[i]==2)
        {
            if(Y[i]==1)st.erase(st.find(dp[X[i]]));
            else t.adds(dp[X[i]],-1);
        }
        else if(X[i]==rt)
        {
            int A=(st.empty()?0:*st.rbegin()),B=t.Qs(Y[i]),C=t.Qs(Y[i]-1);
            if(A>Y[i])ans[i]=0;
            else if(A==Y[i])ans[i]=qpow(2,B);
            else ans[i]=1ll*(qpow(2,(B-C))-1+mod)*qpow(2,C)%mod;
            ans[i]=1ll*ans[i]*qpow(2,siz[i]-t.Qs(t.V))%mod;
        }
    }
    reverse(s.begin(),s.end());
    for(int i:s)
    {
        if(OP[i]==2)
        {
            if(Y[i]==1)st.insert(dp[X[i]]);
            else t.adds(dp[X[i]],1);
        }
        else if(OP[i]==1)
        {
            if(Y[i]==1)st.erase(st.find(dp[X[i]]));
            else t.adds(dp[X[i]],-1);
        }
    }
    return ;
}
int main()
{
    h=qread();n=(1<<h)-1;
    for(int i=1;i<=n;++i)a[i]=qread();
    m=qread();
    for(int i=1,sz=0;i<=m;++i)
    {
        OP[i]=qread(),X[i]=qread(),Y[i]=qread();
        S[X[i]].emplace_back(i);
        if(OP[i]==1&&Y[i]==2)++sz;
        else if(OP[i]==2&&Y[i]==2)--sz;
        siz[i]=sz;
    }
    for(int i=1;i<=n;++i)solve(i);
    for(int i=1;i<=m;++i)if(OP[i]==3)printf("%d\n",ans[i]);
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 0ms
memory: 26376kb

input:

2
3 2 1
50
3 3 1
1 1 2
1 2 1
2 2 1
1 2 2
2 1 2
1 1 1
1 3 2
2 1 1
2 2 2
3 1 2
3 1 3
2 3 2
1 3 2
1 2 2
2 2 2
1 2 1
1 1 2
3 1 1
2 1 2
1 1 1
2 1 1
3 1 2
3 1 3
2 3 2
1 3 2
2 2 1
1 2 1
1 1 1
3 1 2
2 1 1
1 1 1
3 3 1
2 1 1
2 3 2
1 3 1
2 3 1
1 1 2
3 1 3
2 1 2
3 3 1
3 1 3
3 1 1
3 1 1
1 3 2
1 1 1
2 1 1
3 1 1
2...

output:

0
1
0
0
0
2
0
1
2
0
1
0
0
0
0

result:

ok 15 numbers

Test #2:

score: 0
Accepted
time: 0ms
memory: 24348kb

input:

2
3 1 2
50
1 2 2
3 3 2
2 2 2
1 3 1
1 1 1
3 3 2
2 1 1
3 1 3
2 3 1
1 3 1
1 1 1
1 2 2
2 1 1
3 1 3
2 3 1
2 2 2
1 1 2
1 2 1
1 3 1
2 1 2
3 3 2
1 1 1
2 3 1
1 3 2
2 3 2
1 3 1
2 2 1
3 3 2
3 1 1
2 3 1
2 1 1
1 3 1
2 3 1
3 1 3
3 1 3
3 1 3
1 1 1
2 1 1
3 1 2
1 2 1
3 1 1
3 3 2
3 1 3
2 2 1
1 1 1
2 1 1
1 2 1
1 1 2
2...

output:

0
1
1
2
1
1
0
0
0
0
0
0
0
0
0

result:

ok 15 numbers

Subtask #2:

score: 10
Accepted

Dependency #1:

100%
Accepted

Test #3:

score: 10
Accepted
time: 0ms
memory: 24464kb

input:

4
15 14 13 9 10 11 12 2 7 4 5 1 6 8 3
500
3 1 15
3 1 13
1 9 1
1 6 2
1 15 2
1 14 1
1 10 2
1 5 2
3 12 1
1 1 1
1 4 1
3 6 6
3 10 4
1 3 1
3 13 6
1 11 2
2 4 1
2 14 1
3 6 6
3 1 11
3 1 14
3 2 4
2 6 2
2 15 2
3 1 9
3 7 12
1 13 2
2 9 1
2 5 2
3 14 8
1 15 2
1 12 1
3 11 5
1 5 2
3 1 15
3 5 10
3 1 11
1 14 1
2 13 2
...

output:

0
0
0
0
8
0
0
8
0
0
0
0
0
8
16
16
0
0
0
32
0
0
32
16
0
0
16
0
0
0
0
4
0
0
0
0
8
0
0
0
0
0
64
64
0
128
0
0
0
128
64
256
0
64
64
0
0
0
8
4
2
0
2
0
0
0
0
8
4
16
0
0
2
0
2
8
0
0
16
0
8
0
0
16
32
0
32
0
4
4
0
4
0
0
0
0
4
0
0
0
2
0
0
0
0
0
4
2
0
0
0
16
8
0
0
0
0
8
2
4
0
4
4
4
16
0
8
8
16
16
0
0
8
0
0
0
0
...

result:

ok 171 numbers

Test #4:

score: 0
Accepted
time: 2ms
memory: 24360kb

input:

4
15 13 14 7 12 8 11 3 4 9 2 5 6 1 10
500
1 2 1
1 14 2
1 4 1
3 1 12
1 15 2
3 1 15
1 9 2
2 4 1
1 13 1
3 7 1
2 13 1
2 15 2
1 7 2
1 13 1
3 15 10
2 2 1
3 2 2
1 2 2
2 2 2
1 15 2
1 11 1
2 9 2
3 3 11
1 1 1
1 12 2
3 10 9
3 4 3
3 7 1
2 7 2
1 4 1
1 5 1
2 15 2
2 12 2
1 10 2
3 2 7
3 2 13
1 3 1
3 1 15
2 1 1
3 14...

output:

1
2
0
0
0
2
0
0
2
0
2
0
2
0
8
4
0
0
8
4
0
4
4
4
1
0
0
4
0
0
8
0
0
0
32
128
0
0
0
16
0
16
0
0
0
0
8
0
0
0
0
0
16
0
32
0
0
0
8
4
0
0
4
0
0
0
0
0
8
8
0
8
0
0
0
8
0
0
16
0
0
0
0
0
0
2
0
2
0
0
2
0
0
2
1
0
0
0
0
8
16
16
0
0
0
0
0
0
0
0
0
0
0
16
0
0
16
32
0
0
16
0
32
0
0
64
0
4
0
8
0
0
0
4
1
0
0
16
4
0
0
0...

result:

ok 148 numbers

Subtask #3:

score: 20
Accepted

Test #5:

score: 20
Accepted
time: 4ms
memory: 22508kb

input:

9
511 509 510 504 507 505 508 501 503 506 502 494 500 499 493 473 483 495 475 491 497 461 487 490 489 498 496 478 485 480 488 378 469 482 477 462 448 422 470 424 467 421 492 439 454 484 451 376 385 458 464 463 486 411 472 449 474 459 468 479 413 457 455 371 315 432 437 466 453 476 418 433 363 434 38...

output:

0
0
0
0
0
0
0
0
0
0
0
0
1
0
0
1
1
1
0
0
0
0
1
0
0
1
1
1
1
0
1
1
1
1
0
1
1
0
0
0
0
1
0
0
1
0
0
0
1
0
0
0
0
0
0
0
1
0
0
0
1
1
0
1
0
0
1
0
0
0
0
1
1
0
0
1
1
1
1
1
0
0
1
1
1
1
1
0
1
0
0
1
1
0
1
0
0
1
0
0
0
0
1
0
1
1
0
1
0
0
1
0
0
1
1
1
0
0
1
1
1
0
0
0
0
1
1
0
1
1
1
1
0
1
0
0
0
1
0
1
1
1
0
0
1
0
0
0
1
1
...

result:

ok 1644 numbers

Test #6:

score: 0
Accepted
time: 8ms
memory: 24432kb

input:

9
511 510 506 509 508 505 504 500 507 501 503 497 498 502 484 454 495 485 494 488 496 493 474 491 460 487 490 486 499 468 467 408 448 451 469 479 478 412 492 482 476 440 466 489 411 462 470 384 407 438 452 430 464 439 481 456 483 449 422 420 446 441 370 372 376 404 443 369 417 405 416 465 444 275 45...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1
1
0
0
1
0
0
1
1
0
1
0
1
0
1
0
1
0
1
1
0
0
0
0
0
0
0
0
0
1
1
0
0
0
0
0
1
1
0
0
1
0
1
0
0
1
1
1
1
0
1
0
1
0
0
1
0
1
0
1
1
1
1
0
1
1
0
1
1
0
1
0
0
1
1
1
0
1
1
1
1
1
1
0
0
1
1
1
0
1
0
0
0
1
1
1
1
0
0
1
1
1
0
1
1
1
1
1
0
0
1
1
1
1
1
1
0
1
1
1
1
0
0
1
1
1
1
1
0
0
0
0
1
...

result:

ok 1657 numbers

Test #7:

score: 0
Accepted
time: 4ms
memory: 24360kb

input:

9
511 508 510 502 505 506 509 497 489 501 504 496 500 507 499 494 486 466 482 472 442 503 453 492 469 481 477 488 491 483 484 493 416 480 485 420 465 436 471 353 447 437 384 490 498 399 381 487 468 461 457 478 479 474 473 248 430 412 448 429 421 449 475 423 476 338 410 435 444 438 462 379 415 372 39...

output:

0
0
0
1
0
0
1
0
1
0
0
0
0
0
1
0
0
0
0
0
1
0
1
1
0
0
1
1
1
0
0
0
0
0
1
1
0
1
0
1
1
1
0
0
1
0
0
1
0
0
1
1
1
1
0
1
1
0
0
1
0
0
0
1
0
1
1
1
0
0
1
1
0
0
0
0
1
0
0
0
0
1
0
1
1
0
1
1
0
1
0
0
0
1
0
1
1
1
0
1
0
0
1
1
0
1
1
0
1
1
0
0
1
1
1
1
1
0
0
0
1
0
1
1
0
1
0
1
1
1
1
1
0
1
1
1
1
1
0
0
0
0
1
1
1
1
1
0
0
0
...

result:

ok 1644 numbers

Test #8:

score: 0
Accepted
time: 4ms
memory: 22340kb

input:

9
511 509 510 505 506 508 490 499 484 497 501 507 504 477 481 494 469 479 468 458 486 496 487 503 495 498 449 461 467 476 480 448 470 424 459 413 478 441 466 429 446 485 438 489 463 473 483 502 500 491 492 474 493 443 430 385 433 453 447 460 472 379 408 363 415 367 445 401 405 426 259 383 351 322 45...

output:

0
0
0
0
0
0
0
0
0
1
1
0
1
0
0
1
0
1
0
0
0
0
0
0
0
0
0
0
0
0
1
1
0
0
0
0
0
1
0
0
0
0
0
1
0
0
0
0
0
1
0
0
0
1
0
1
0
0
0
1
0
1
1
1
1
0
0
1
0
0
1
0
0
0
0
1
0
0
0
1
1
0
0
0
1
0
0
1
0
0
1
1
0
0
0
1
0
1
0
1
0
0
0
0
1
1
1
0
0
0
0
1
0
1
0
1
1
0
1
1
1
0
1
0
0
0
1
1
1
1
0
1
1
1
0
1
0
0
0
1
1
1
1
1
1
1
1
0
1
1
...

result:

ok 1620 numbers

Subtask #4:

score: 20
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Test #9:

score: 20
Accepted
time: 3ms
memory: 26508kb

input:

9
511 509 510 504 507 508 503 488 502 493 501 505 506 481 483 468 476 495 498 490 487 491 496 447 500 482 499 474 462 453 464 465 461 457 428 448 427 492 472 471 454 484 478 459 489 485 494 393 440 470 497 463 475 477 480 445 473 452 399 436 419 443 396 407 348 409 423 451 397 420 357 435 366 389 33...

output:

0
0
0
128
128
0
512
256
2048
8192
0
0
32768
0
0
524288
524288
0
0
0
0
4194304
0
4194304
0
8388608
0
0
67108864
0
0
0
536870912
0
0
0
0
0
147483634
0
0
589934536
0
589934536
179869065
179869065
0
0
438952513
0
438952513
877905026
0
0
0
511620083
511620083
46480318
23240159
92960636
92960636
0
0
0
371...

result:

ok 1703 numbers

Test #10:

score: 0
Accepted
time: 4ms
memory: 24468kb

input:

9
511 509 510 505 508 506 507 492 503 496 501 498 504 493 502 484 491 480 482 494 489 476 495 469 490 500 483 467 473 464 497 481 423 478 485 326 440 444 436 391 487 474 406 466 472 486 471 373 454 475 477 451 499 479 432 458 460 393 470 433 463 400 462 414 468 410 384 358 363 402 456 271 325 275 42...

output:

0
0
0
0
0
0
256
0
0
0
0
0
131072
16384
0
0
0
524288
524288
0
0
0
16777216
16777216
16777216
0
0
0
147483634
0
0
294967268
294967268
0
438952513
0
0
0
0
0
0
0
0
0
0
511620083
0
0
0
0
92960636
0
0
92960636
0
974740338
974740338
949480669
0
898961331
949480669
0
0
0
383381198
533524785
533524785
0
5363...

result:

ok 1648 numbers

Test #11:

score: 0
Accepted
time: 4ms
memory: 26512kb

input:

9
511 508 510 504 507 501 509 497 503 499 506 487 495 494 505 474 464 493 452 467 498 500 489 460 482 468 490 491 488 496 502 463 465 360 440 459 492 450 445 453 466 483 476 485 448 443 477 402 436 469 480 417 438 426 456 415 442 429 486 470 481 437 449 458 405 409 455 310 357 368 397 420 457 421 47...

output:

0
0
4
0
0
32
0
0
0
1024
0
0
65536
524288
2097152
0
0
0
0
0
0
0
0
0
16777216
0
0
73741817
73741817
536870912
134217728
0
0
0
0
0
0
147483634
294967268
359738130
359738130
0
0
755810045
0
185921272
185921272
0
371842544
0
0
0
743685088
371842544
974740338
0
0
0
743685088
743685088
0
487370169
97474033...

result:

ok 1641 numbers

Test #12:

score: 0
Accepted
time: 3ms
memory: 26436kb

input:

9
511 508 510 499 502 506 509 494 497 495 489 501 504 498 507 490 480 492 496 488 481 485 482 443 484 500 503 475 487 486 505 419 464 453 471 447 472 466 493 436 477 462 431 438 476 456 470 374 433 412 463 430 425 435 483 410 452 417 468 444 451 478 491 403 418 432 460 309 442 465 389 407 421 382 39...

output:

0
0
0
4
0
0
0
0
0
0
1024
2048
0
0
0
0
4096
0
0
0
0
0
0
0
2097152
2097152
0
0
0
0
0
0
147483634
589934536
589934536
0
0
438952513
511620083
371842544
0
0
0
743685088
371842544
0
0
743685088
487370169
743685088
0
0
0
0
487370169
743685088
974740338
0
0
0
0
974740338
0
0
898961331
797922655
0
797922655...

result:

ok 1656 numbers

Subtask #5:

score: 0
Wrong Answer

Dependency #3:

100%
Accepted

Test #13:

score: 0
Wrong Answer
time: 1994ms
memory: 39100kb

input:

18
262143 262142 262141 262135 262134 262140 262137 262119 262122 262133 262117 262136 262139 262129 262130 262114 262088 262099 262080 262126 262131 262091 262101 262128 262132 262138 262115 262103 262121 262069 262094 262111 262078 261968 262042 262032 262097 262059 262074 262086 262113 262124 262...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1
0
0
0
1
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1
0
0
0
0
0
0
0
0
...

result:

wrong answer 100079th numbers differ - expected: '1', found: '2'

Subtask #6:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Dependency #5:

0%