QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#376646#6631. Maximum Bitwise ORfairyqq28ML 96ms10744kbC++142.0kb2024-04-04 14:30:192024-04-04 14:30:20

Judging History

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

  • [2024-04-04 14:30:20]
  • 评测
  • 测评结果:ML
  • 用时:96ms
  • 内存:10744kb
  • [2024-04-04 14:30:19]
  • 提交

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;
int n, q, a[N], sum[N][30][30], cnt[N][30], nxt[N][30], tmp[30];
int stk[35], top; vector<int> e[N];

void clear(){
    while(top) {e[stk[top]].clear(); top--;}
}

void init(){
    rep(i, 1, n){
        int t = -1;
        per(j, 29, 0){
            rep(k, 0, 29) sum[i][j][k] = sum[i - 1][j][k];
            if(a[i]>>j&1) t = j;
            cnt[i][j] = t;
            if(~t) sum[i][j][t]++;
        }
    }
    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]; 
}

void solve(){
    scanf("%d%d", &n, &q);
    rep(i, 1, n) scanf("%d", &a[i]);
    init();
    while(q--){
        clear();
        int x, y; scanf("%d%d", &x, &y);
        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) tmp[i] = sum[y][r][i] - sum[x - 1][r][i];
        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");
    }
}

int main(){
    int T; scanf("%d", &T); while(T--) solve();
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 10132kb

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: 93ms
memory: 10744kb

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: 96ms
memory: 10288kb

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: 92ms
memory: 9472kb

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: 95ms
memory: 10648kb

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: 83ms
memory: 10192kb

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: 66ms
memory: 10140kb

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: -100
Memory Limit Exceeded

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: