QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#376695 | #6631. Maximum Bitwise OR | fairyqq28 | AC ✓ | 110ms | 49064kb | C++14 | 2.4kb | 2024-04-04 15:15:56 | 2024-04-04 15:15:57 |
Judging History
answer
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
#define rep(i, a, b) for(int i = (a); i <= (b); i++)
#define per(i, a, b) for(int i = (a); i >= (b); i--)
using namespace std;
const int N = 100010;
bool XXX;
int n, q, a[N], sum[30][30], cnt[N][30], nxt[N][30], f[N][30];
int stk[35], top; vector<int> e[N];
void init1(){
rep(i, 0, 29) nxt[n + 1][i] = n + 1;
per(i, n, 1) rep(j, 0, 29)
nxt[i][j] = (a[i]>>j&1) ? i : nxt[i + 1][j];
}
int xx[N], yy[N];
struct node {int id, tp, op;};
vector<node> s[N];
void init2(){
rep(i, 0, 29) rep(j, 0, 29) sum[i][j] = 0;
rep(i, 1, n){
int t = -1;
per(j, 29, 0){
if(a[i]>>j&1) t = j;
cnt[i][j] = t;
if(~t) sum[j][t]++;
}
for(node &j : s[i]) rep(k, 0, 29)
f[j.id][k] += j.op * sum[j.tp][k];
}
}
void solve(){
scanf("%d%d", &n, &q);
rep(i, 1, n) scanf("%d", &a[i]);
init1();
rep(i, 1, q){
scanf("%d%d", &xx[i], &yy[i]);
int t = -1;
rep(j, 0, 29) if(nxt[xx[i]][j] > yy[i]) {t = j; break;}
s[xx[i] - 1].push_back(node{i, t, -1});
s[yy[i]].push_back(node{i, t, 1});
rep(j, 0, 29) f[i][j] = 0;
}
init2();
rep(X, 1, q){
int *tmp = f[X];
while(top) {e[stk[top]].clear(); top--;}
int x = xx[X], y = yy[X];
int mx = 0, l = -1, r = -1;
per(i, 29, 0) if(nxt[x][i] <= y) {mx = i; break;}
printf("%d ", (1 << (mx + 1)) - 1);
per(i, mx, 0) if(nxt[x][i] > y) {l = i; break;}
rep(i, 0, mx) if(nxt[x][i] > y) {r = i; break;}
if(!~l) {puts("0"); continue;}
rep(i, 0, 29) if(nxt[x][i] <= y && nxt[nxt[x][i] + 1][i] > y){
int t = nxt[x][i];
if(e[t].empty()) stk[++top] = t;
e[t].push_back(i);
}
bool flag = 0;
rep(i, 1, top){
int t = stk[i];
if(~cnt[t][r]) tmp[cnt[t][r]]--;
if(e[t].size() == 1)
if(cnt[t][r] == e[t][0] && cnt[t][r] > l){
flag = 1; break;
}
}
if(flag) {puts("1"); continue;}
per(i, 29, l) if(tmp[i]) {flag = 1; break;}
puts(flag ? "1" : "2");
}
rep(i, 0, n) s[i].clear();
}
int main(){
int T; scanf("%d", &T); while(T--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 14820kb
input:
1 3 2 10 10 5 1 2 1 3
output:
15 2 15 0
result:
ok 4 number(s): "15 2 15 0"
Test #2:
score: 0
Accepted
time: 91ms
memory: 14636kb
input:
100000 1 1 924704060 1 1 1 1 149840457 1 1 1 1 515267304 1 1 1 1 635378394 1 1 1 1 416239424 1 1 1 1 960156404 1 1 1 1 431278082 1 1 1 1 629009153 1 1 1 1 140374311 1 1 1 1 245014761 1 1 1 1 445512399 1 1 1 1 43894730 1 1 1 1 129731646 1 1 1 1 711065534 1 1 1 1 322643984 1 1 1 1 482420443 1 1 1 1 20...
output:
1073741823 2 268435455 2 536870911 2 1073741823 2 536870911 2 1073741823 2 536870911 2 1073741823 2 268435455 2 268435455 2 536870911 2 67108863 2 134217727 2 1073741823 2 536870911 2 536870911 2 268435455 2 536870911 2 536870911 2 536870911 2 268435455 2 268435455 2 1073741823 2 16777215 2 10737418...
result:
ok 200000 numbers
Test #3:
score: 0
Accepted
time: 99ms
memory: 14920kb
input:
50000 2 2 924896435 917026400 1 2 1 2 2 2 322948517 499114106 1 2 2 2 2 2 152908571 242548777 1 1 1 2 2 2 636974385 763173214 1 2 1 1 2 2 164965132 862298613 1 1 1 2 2 2 315078033 401694789 1 2 1 2 2 2 961358343 969300127 2 2 1 2 2 2 500628228 28065329 1 2 1 2 2 2 862229381 863649944 1 2 2 2 2 2 541...
output:
1073741823 2 1073741823 2 536870911 2 536870911 2 268435455 2 268435455 2 1073741823 2 1073741823 2 268435455 2 1073741823 2 536870911 2 536870911 2 1073741823 2 1073741823 2 536870911 2 536870911 2 1073741823 2 1073741823 2 1073741823 2 268435455 2 536870911 2 536870911 2 1073741823 2 1073741823 2 ...
result:
ok 200000 numbers
Test #4:
score: 0
Accepted
time: 99ms
memory: 14432kb
input:
33333 3 3 925088809 339284112 289540728 3 3 1 3 1 1 3 3 422399522 892365243 216341776 3 3 3 3 1 2 3 3 668932010 837523227 840095874 1 3 1 3 3 3 3 3 731584574 357877180 359063739 1 1 1 1 3 3 3 3 463358343 833924976 847087403 2 3 3 3 1 2 3 3 377154649 772000701 656357011 2 3 1 2 2 3 3 3 977492169 5540...
output:
536870911 2 1073741823 2 1073741823 2 268435455 2 268435455 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 536870911 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 67108863 2 1073741823 2 1073741...
result:
ok 199998 numbers
Test #5:
score: 0
Accepted
time: 91ms
memory: 14276kb
input:
20000 5 5 925473558 183799537 561353092 858424993 765513347 2 4 1 1 1 2 3 5 1 4 5 5 141075166 375934371 754066286 663820319 906342255 3 5 1 1 4 5 1 4 2 3 5 5 417114008 270241961 121113861 381529080 772448388 1 3 1 1 2 5 5 5 2 2 5 5 668136057 138968211 856562545 187058570 699131353 4 5 3 4 5 5 2 4 3 ...
output:
1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 268435455 2 1073741823 2 1073741823 2 1073741823 2 536870911 2 536870911 2 1073741823 2 1073741823 2 536870911 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 1073741823 2 268435455 2 107374...
result:
ok 200000 numbers
Test #6:
score: 0
Accepted
time: 86ms
memory: 15228kb
input:
10000 10 10 464850425 447664857 363029101 653457810 349421643 98326037 214053360 578140626 808807764 145448013 7 9 9 10 8 10 3 7 9 10 5 8 3 3 4 5 5 9 5 6 10 10 164710533 415965867 931056007 328603885 862991829 82082068 344198824 831587464 105221046 931994543 3 10 3 6 2 5 1 8 2 5 2 4 1 4 2 9 4 7 2 10...
output:
1073741823 2 1073741823 2 1073741823 2 1073741823 0 1073741823 2 1073741823 0 536870911 2 1073741823 2 1073741823 0 536870911 2 1073741823 1 1073741823 2 1073741823 0 1073741823 0 1073741823 0 1073741823 2 1073741823 2 1073741823 0 1073741823 2 1073741823 0 1073741823 0 1073741823 0 1073741823 2 107...
result:
ok 200000 numbers
Test #7:
score: 0
Accepted
time: 74ms
memory: 16164kb
input:
2000 50 50 301364921 49607558 56439403 72138223 738745954 181451970 38781406 471102148 4784830 822066927 452651281 90223924 953803789 734536065 187547996 210346218 345980284 176449147 902515665 381421430 951687051 393184831 343896411 352474642 377720626 788400840 998087699 244732858 836294423 773917...
output:
1073741823 0 1073741823 2 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 1073741823 0 536870911 2 1073741823 0 10...
result:
ok 200000 numbers
Test #8:
score: 0
Accepted
time: 98ms
memory: 49064kb
input:
1 100000 100000 412845353 687170600 219497096 548310424 820681466 491266412 904807220 701500031 955106649 72422395 93882988 690742484 618525007 878384372 612794801 559975151 691971081 470518678 75198195 606919949 495771077 94896835 955641205 829504564 891480929 134520717 93159022 75955235 203043484 ...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #9:
score: 0
Accepted
time: 110ms
memory: 49064kb
input:
1 100000 100000 952441795 454169042 417874915 71762275 538969458 551454259 292052801 531091490 755275234 645143315 984088451 936400451 457379970 948257584 873148497 45309968 181471857 731348131 558039441 931056465 620380274 394825331 26893888 69376673 614858034 489359328 635100016 501393058 84479238...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #10:
score: 0
Accepted
time: 106ms
memory: 48896kb
input:
1 100000 100000 384728962 789675555 140424904 760669121 361439328 393719043 515372386 379329282 704177992 446687619 688441058 939269091 570763146 492018656 161714443 596461347 384092907 304150755 54574625 350079201 804917409 296791883 311704288 120533827 281070753 787668201 311851337 243944555 86097...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #11:
score: 0
Accepted
time: 88ms
memory: 49004kb
input:
1 100000 100000 954336048 123973577 880492165 179935659 785024360 446828445 77109657 780837560 486606848 754530467 539109315 829629731 461093031 358202421 812196741 329889417 420722415 449493848 973737526 892895244 910922005 26817536 544872240 181116842 949654139 678991086 632915781 392332516 893065...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #12:
score: 0
Accepted
time: 95ms
memory: 49000kb
input:
1 100000 100000 997435299 89302459 301638156 287879654 31109978 710567427 862164453 30581573 218231322 790843699 504455688 59852554 128107447 136479278 677908917 656495120 701210747 757834233 389730511 223590335 907018676 69432210 399057691 629817788 579974579 942774009 925991702 357195805 868233843...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #13:
score: 0
Accepted
time: 32ms
memory: 46528kb
input:
1 100000 100000 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 536870912 5368...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #14:
score: 0
Accepted
time: 52ms
memory: 48788kb
input:
1 100000 100000 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #15:
score: 0
Accepted
time: 63ms
memory: 48884kb
input:
1 100000 100000 8192 8388608 4 32 2048 8388608 32 8388608 8388608 8388608 4 2097152 2097152 131072 2097152 8388608 8388608 131072 8388608 8192 131072 2097152 2097152 2048 8192 2048 512 8192 2048 131072 4 4 8388608 8388608 8192 4 16777216 8192 32 16777216 512 2097152 512 16777216 8192 2048 32 8192 16...
output:
1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 1...
result:
ok 200000 numbers
Test #16:
score: 0
Accepted
time: 85ms
memory: 48972kb
input:
1 100000 100000 8192 8388608 4 32 2048 8388608 32 8388608 8388608 8388608 4 2097152 2097152 131072 2097152 8388608 8388608 131072 8388608 8192 131072 2097152 2097152 2048 8192 2048 512 8192 2048 131072 4 4 8388608 8388608 8192 4 16777216 8192 32 16777216 512 2097152 512 16777216 8192 2048 32 8192 16...
output:
1073741823 1 1073741823 1 33554431 1 1073741823 1 1073741823 1 1073741823 1 1073741823 1 33554431 1 1073741823 1 1073741823 1 1073741823 1 33554431 1 33554431 1 33554431 1 33554431 1 33554431 1 33554431 1 1073741823 1 33554431 1 1073741823 1 33554431 1 33554431 1 1073741823 1 33554431 1 33554431 1 3...
result:
ok 200000 numbers