QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#250964#6730. CoolbitsLionel_ZQYAC ✓154ms4988kbC++20869b2023-11-13 22:30:262023-11-13 22:30:26

Judging History

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

  • [2023-11-13 22:30:26]
  • 评测
  • 测评结果:AC
  • 用时:154ms
  • 内存:4988kb
  • [2023-11-13 22:30:26]
  • 提交

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,i64 bit){
		if(!((x>>bit)&1)){
			x=((x>>bit)|1)<<bit;
		}
		return x;
	};

	i64 res=0;
	for(i64 i=32;i>=0;i--){
		bool ok=true;
		for(i64 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<<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;
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 0
Accepted
time: 154ms
memory: 4988kb

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
10439883
605885728
90768686
22491373
11692710
16776650
67341740
18536525
41972008
144137157
42855333
39995541
43488868
44009818
32268396
173845856
22782278
13766220
135007650
39354674
4073141
70831334
70543107
331507485
37817926
43510327
67560240
37521185
76801656
39488739
100671964
6000320...

result:

ok 1117 numbers