QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#279711#7045. XOR Treebachbeo2007AC ✓1344ms32056kbC++232.6kb2023-12-08 23:29:152023-12-08 23:29:15

Judging History

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

  • [2023-12-08 23:29:15]
  • 评测
  • 测评结果:AC
  • 用时:1344ms
  • 内存:32056kb
  • [2023-12-08 23:29:15]
  • 提交

answer

// Judges with GCC >= 12 only needs Ofast
// #pragma GCC optimize("O3,no-stack-protector,fast-math,unroll-loops,tree-vectorize")
// MLE optimization
// #pragma GCC optimize("conserve-stack")
// Old judges
// #pragma GCC target("sse4.2,popcnt,lzcnt,abm,mmx,fma,bmi,bmi2")
// New judges. Test with assert(__builtin_cpu_supports("avx2"));
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma,tune=native")
// Atcoder
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma")
#include<bits/stdc++.h>
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
uniform_real_distribution<> pp(0.0,1.0);
#define ld long double
#define pii pair<int,int>
#define piii pair<int,pii>
#define fi first
#define se second
typedef unsigned long long ull;
typedef long long ll;
const int inf=1e9;
const int mod=998244353;
const int mod2=1e9+7;
const int maxn=100005;
const int maxq=500005;
const int maxl=20;
const int maxa=1000005;
int power(int a,int n){
    int res=1;
    while(n){
        if(n&1) res=res*a%mod;
        a=a*a%mod;n>>=1;
    }
    return res;
}
ull ans[maxn],num[maxn][4];
int n,k,a[maxn],par[maxn][maxl],c1,c2;
vector<int> edge[maxn],child[maxn];
void dfs1(int u){
    num[u][0]=num[u][1]=0;
    num[u][(a[u]>>c1)&1]++;
    for(int v:edge[u]){
        dfs1(v);
        for(int j=0;j<=1;j++) num[u][j]+=num[v][j];
    }
    for(int x:child[u]) num[u][(a[x]>>c1)&1]--;
    ans[u]+=(num[u][0]*num[u][1])*(1ULL<<c1)*(1ULL<<c1);
}
void dfs2(int u){
    num[u][0]=num[u][1]=num[u][2]=num[u][3]=0;
    num[u][((a[u]>>c1)&1)<<1|((a[u]>>c2)&1)]++;
    for(int v:edge[u]){
        dfs2(v);
        for(int j=0;j<=3;j++) num[u][j]+=num[v][j];
    }
    for(int x:child[u]) num[u][((a[x]>>c1)&1)<<1|((a[x]>>c2)&1)]--;
    ans[u]+=(num[u][1]*num[u][2]+num[u][3]*num[u][0])*(1ULL<<c1)*(1ULL<<c2)*2ULL;
}
void solve(){
    cin >> n >> k;
    for(int i=1;i<=n;i++) cin >> a[i];
    for(int i=2;i<=n;i++){
        int p;cin >> p;
        par[i][0]=p;edge[p].push_back(i);
    }
    for(int i=1;i<=18;i++){
        for(int j=1;j<=n;j++) par[j][i]=par[par[j][i-1]][i-1];
    }
    for(int i=1;i<=n;i++){
        int u=i;
        for(int j=0;j<=18;j++){
            if((k+1)&(1<<j)) u=par[u][j];
        }
        if(u!=0) child[u].push_back(i);
    }
    for(c1=0;c1<=29;c1++) dfs1(1);
    for(c1=0;c1<=29;c1++){
        for(c2=c1+1;c2<=29;c2++) dfs2(1);
    }
    for(int i=1;i<=n;i++) cout << ans[i] << '\n';
}
signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);cout.tie(NULL);
    int test=1;//cin >> test;
    while(test--) solve();
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 14084kb

input:

6 1
4 3 2 4 3 1
1 1 2 2 5

output:

86
98
0
0
4
0

result:

ok 6 lines

Test #2:

score: 0
Accepted
time: 5ms
memory: 11112kb

input:

500 50
393327425 751304819 230942599 559458196 463730189 323966066 445269312 651047281 840411866 359599246 305050356 77084171 817750542 938505384 467961771 187450694 832472869 388005758 610981616 644958519 816712665 988497027 348227527 106694696 636293112 217875090 408722909 63211622 736241151 76610...

output:

2484337175052561930
882956815531948810
1990290354187703220
2951108338243112542
7146296279649696070
8595506076130955810
9898692581349254122
12620105082907774521
6276027773445176816
1632820238819937125
7371320677776017260
9315757892603614610
14575883921859453174
5250428235567143810
6310709515080098492...

result:

ok 500 lines

Test #3:

score: 0
Accepted
time: 323ms
memory: 21408kb

input:

30000 3000
416189612 854085620 995232508 477116625 193936517 566101971 399043044 455751058 386513988 110470384 315774823 454201323 529613755 413253898 652443502 512275061 919556828 172076089 215832587 510075089 447664104 919474653 883448596 513147625 209784326 797440175 324985774 773933455 415212063...

output:

18057725148092092276
428618770514934899
2770956013599764048
14974779386150325552
1667188071420813090
10441555585508231290
10751760586752681724
18021604519623468929
4988347366418241634
3146161409882639404
13660046833129175896
6853828753100854932
6030564660542789579
4853803524065935816
154084277535820...

result:

ok 30000 lines

Test #4:

score: 0
Accepted
time: 603ms
memory: 22628kb

input:

50000 5000
870764930 297784082 7626254 774155359 354987034 676628134 322041789 922236503 686928311 426612229 824853841 589347739 395052021 792470686 138744612 52802660 73169312 263040597 187770583 742986567 523704740 627366535 838756882 22998267 629163877 131244056 305020729 718037131 277741327 4550...

output:

7272857077981900250
15099659068771747586
14522811799441314662
17353244824464266168
5540788197669751308
2524815842644662544
9554129543165610669
4172261795794618661
11672422559869373832
17962636975027944100
10775942809849063400
6865209196956923593
15057925902539703336
14912048126404018264
348709397415...

result:

ok 50000 lines

Test #5:

score: 0
Accepted
time: 1330ms
memory: 32056kb

input:

100000 10
217535440 668041289 916326409 877679552 79139917 968120527 218183796 366237103 936590891 679253254 767087496 35261544 575365938 20069419 602633889 76393323 274817269 892275177 736442209 796284359 452525110 545356269 929568098 399248445 727298294 527293096 663541286 946091407 987197352 2720...

output:

8628164072562729054
9339286594783226830
9722416538737835002
16242117431354719584
14496544905222790521
15080670853656017377
13975564280201834297
10579353213447368460
9807801091922615344
8335927720284008664
10451631268230266904
9629639812140279536
11442347387760128044
8644024026907888068
9045689223807...

result:

ok 100000 lines

Test #6:

score: 0
Accepted
time: 1344ms
memory: 31332kb

input:

100000 50
460486087 340916464 65423953 735425636 287196174 35389184 610444272 718449910 570837167 105661028 120489129 959617371 411108967 243911428 857129432 571931319 82184180 487897920 723731336 927583545 408396108 900414143 239951850 211956693 54446699 946641378 872492528 485183542 745221299 3290...

output:

17968009078719101884
15357724600859613644
15885878391749066081
6632112191949845750
1383902874457886198
926663333166635414
2492800651177099538
17619839142489669686
3043317379937375710
10433326635853929662
14310071667386178380
15713577313796793260
12676505269147543776
17171151624926660596
528696653896...

result:

ok 100000 lines

Test #7:

score: 0
Accepted
time: 1334ms
memory: 30784kb

input:

100000 233
136493569 459760729 551422896 584644782 656600 848845767 665624793 417678416 918080676 831553956 877175397 605710551 514672905 855597792 514186029 548129196 642934060 418318406 341291741 476305088 284191455 840794677 57618451 11228823 986166753 916969458 632080803 880130791 423046835 7142...

output:

9961667212831636322
12775690836695400823
11301407955374626064
15884171922304610065
12400191213547458008
2373643094625015000
16025754547867978990
10325454678915570574
90473168284413646
4475863937732652493
5413065815933576012
11264215929441612035
1017047449087902195
2852161309857904300
152367007170325...

result:

ok 100000 lines

Test #8:

score: 0
Accepted
time: 1304ms
memory: 30312kb

input:

100000 7653
77779934 227963726 638214101 399233975 411912261 603216207 117485973 65728037 378714539 357942582 339885543 435933671 693026865 516110193 603639852 918925180 296283251 943078558 527144895 654403512 173710193 95589758 980554073 767407727 40025234 104447667 190531715 110864674 389766231 28...

output:

3307312356264045706
14874592074333075909
5996635450288450485
14194634542252335584
6148217449123074016
14431607782681977536
1919819350656677025
4400558466216659313
3936940638753856634
13147472119668827741
15447398510409411781
3502759633117113382
1937397500830042321
1816038206662161206
181904940382818...

result:

ok 100000 lines

Test #9:

score: 0
Accepted
time: 1256ms
memory: 29628kb

input:

100000 32135
672840933 118377636 371375523 641832662 850420243 112205191 791299778 234757252 838089753 562356867 712777625 794309233 676212792 580334739 432086225 657488514 697523881 303571391 543372920 572801306 926697093 341214278 214711154 33617848 960764124 432012669 411488444 877336355 81552994...

output:

12793232208625928111
14327555704638209142
6269733831463827398
6242512632017086727
17929270268635168986
17123696590254195384
10757352362720144624
11340040824798936120
201379829960496113
6665001071674189844
10422098044969734684
5056075788642753228
13809478561578038484
8754781422226413228
1027071960946...

result:

ok 100000 lines

Test #10:

score: 0
Accepted
time: 969ms
memory: 32020kb

input:

100000 85555
361417381 636731807 228647435 827956271 809136192 385081646 434050376 329290680 528337363 547832744 337481047 185625389 953265245 176153488 322138641 86126763 188485380 964309137 933910603 74343826 802497833 977105692 373624999 152034604 733296793 221041443 950066373 784299949 712760054...

output:

4619882817926842478
13959335715362393545
13409901843907449352
8266342009617255197
8027320574283346234
7793723821400591786
453324073377786218
502532483741763514
2901404726897247280
13937362726960663424
13921333292070783660
1989003908080744495
7705096603319269628
17993606047309186511
16942503457083217...

result:

ok 100000 lines