Submission #951225

# Submission time Handle Problem Language Result Execution time Memory
951225 2024-03-21T12:28:49 Z PM1 Bitwise (BOI06_bitwise) C++17
35 / 100
1 ms 348 KB
#include <bits/stdc++.h>
using namespace std;
#define fr first
#define sc second
const int mxn=105;
int n,p,cnt[mxn],ans=0;
vector<pair<int,int>>v[mxn];
int main(){
	cin>>n>>p;
	for(int i=1;i<=p;i++)
		cin>>cnt[i];
	for(int i=1;i<=p;i++){
		while(cnt[i]--){
			int a,b;
			cin>>a>>b;
			v[i].push_back({a,b});
		}
	}
	for(int k=30;k>=0;k--){
		
		bool t=1;
		for(int i=1;i<=p;i++){
			int g=0,gg=0;
			for(auto j:v[i]){
				//cout<<j.fr<<" "<<j.sc<<'\n';
				if(j.fr>=(1<<k) && j.sc>=(1<<k))g++;
				else if(j.sc>=(1<<k))gg++;
			}
			if(g+gg==0){
				t=0;
				break;
			}
		}
		if(!t)
			continue;
		else{
			ans+=(1<<k);
			for(int i=1;i<=p;i++){
				int g=0,gg=0;
				for(auto j:v[i]){
					if(j.fr>=(1<<k) && j.sc>=(1<<k))g++;
					else if(j.sc>=(1<<k))gg++;
				}
				if(g){
					for(int j=0;j<v[i].size();j++){
						auto y=v[i][j];
						if(y.fr>=(1<<k) && y.sc>=(1<<k)){
							v[i][j].fr-=(1<<k);
							v[i][j].sc-=(1<<k);
						}
					}
				}
				else{
					for(int j=0;j<v[i].size();j++){
						auto y=v[i][j];
						if(y.fr<(1<<k) && y.sc>=(1<<k)){
							v[i][j].fr-=(1<<k);
							v[i][j].sc-=(1<<k);
							break;
						}
					}
				}
			}
		}
	}
	cout<<ans;
	return 0;
}

Compilation message

bitwise.cpp: In function 'int main()':
bitwise.cpp:45:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |      for(int j=0;j<v[i].size();j++){
      |                  ~^~~~~~~~~~~~
bitwise.cpp:54:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   54 |      for(int j=0;j<v[i].size();j++){
      |                  ~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Incorrect 1 ms 348 KB Output isn't correct
4 Correct 0 ms 348 KB Output is correct
5 Incorrect 0 ms 348 KB Output isn't correct
6 Incorrect 0 ms 344 KB Output isn't correct
7 Incorrect 1 ms 344 KB Output isn't correct
8 Correct 0 ms 344 KB Output is correct
9 Incorrect 0 ms 348 KB Output isn't correct
10 Correct 0 ms 348 KB Output is correct
11 Incorrect 0 ms 348 KB Output isn't correct
12 Correct 1 ms 344 KB Output is correct
13 Incorrect 1 ms 348 KB Output isn't correct
14 Incorrect 1 ms 344 KB Output isn't correct
15 Correct 1 ms 348 KB Output is correct
16 Correct 1 ms 344 KB Output is correct
17 Incorrect 0 ms 348 KB Output isn't correct
18 Incorrect 1 ms 344 KB Output isn't correct
19 Incorrect 0 ms 344 KB Output isn't correct
20 Incorrect 1 ms 348 KB Output isn't correct