QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#250945 | #6730. Coolbits | Lionel_ZQY | WA | 116ms | 4712kb | C++20 | 1002b | 2023-11-13 21:55:55 | 2023-11-13 21:55:55 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
void solve(){
int n;
cin>>n;
vector<i64> l(n+1),r(n+1);
for(int i=1;i<=n;i++){
cin>>l[i]>>r[i];
}
auto deal=[&](i64 x,int bit){
x|=(1LL<<bit);
if(bit!=0){
x=(x>>(bit-1));
x=(x<<(bit-1));
}
return x;
};
i64 res=0;
for(int i=32;i>=0;i--){
bool ok=true;
for(int j=1;j<=n;j++){
if(r[j]<(1LL<<i)){
ok=false;
break;
}else{
i64 lf=max(l[j],deal(l[j],i));
if(lf>r[j]){
ok=false;
break;
}
}
}
if(ok){
res=(res|(1LL<<i));
for(int j=1;j<=n;j++){
l[j]=max(l[j],deal(l[j],i));
}
}
// cout<<"? "<<i<<' '<<ans<<'\n';
// for(int j=1;j<=n;j++){
// cout<<j<<' '<<l[j]<<'\n';
// }
}
cout<<res<<'\n';
}
/*
100111110100110011001011
11111111111111111111111
*/
int main(){
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
int t;
cin>>t;
while(t--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3404kb
input:
2 3 0 8 2 6 3 9 1 1 100
output:
6 100
result:
ok 2 number(s): "6 100"
Test #2:
score: -100
Wrong Answer
time: 116ms
memory: 4712kb
input:
1117 74 234256176 451122435 614716780 701954053 31102604 284818525 528763990 809400397 40637446 612671528 329403504 936190213 112402633 729525189 248142852 481053286 30877745 700834811 529884578 749041634 146522084 758550567 934650972 996096650 538751855 856147351 170918541 975066425 253153230 35361...
output:
29882460 8388607 79463293 23659822 22491373 11534335 16776650 67341740 18536525 33554431 127553483 41943039 39995541 33554431 14752687 32268396 173845856 22782278 13631487 50116729 14188850 4073141 70831334 42980854 271278316 26083682 33554431 31647199 37521185 33315916 4194303 100671964 60003201 14...
result:
wrong answer 2nd numbers differ - expected: '10439883', found: '8388607'