Problem link: Arya and OR
Solution:
Firstly, the maximum value we could get is the largest element of the array. So we will sort the array. Then our maximum value could get greater by doing OR ( | ) with other elements of the array. So in that case, what we will do is that, each time we will make bitwise OR with the largest element of the array with other elements in descending order. So, gradually, we will get values after everytime we OR them. If our current value is greater than our maximum value, then we will simply update the maximum value.
As there is a term "arbitrary group of numbers"
Arbitrary group should mean any group possible from the whole array, and in that case the bitwise or of the whole array is always the maximum answer
**ps: We don't even need sorting for this problem. Simply compute OR of all the numbers.
Code:
Solution:
Firstly, the maximum value we could get is the largest element of the array. So we will sort the array. Then our maximum value could get greater by doing OR ( | ) with other elements of the array. So in that case, what we will do is that, each time we will make bitwise OR with the largest element of the array with other elements in descending order. So, gradually, we will get values after everytime we OR them. If our current value is greater than our maximum value, then we will simply update the maximum value.
As there is a term "arbitrary group of numbers"
Arbitrary group should mean any group possible from the whole array, and in that case the bitwise or of the whole array is always the maximum answer
**ps: We don't even need sorting for this problem. Simply compute OR of all the numbers.
Code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#include <ext/pb_ds/assoc_container.hpp> | |
using namespace std; | |
using namespace __gnu_pbds; | |
#define ll long long | |
#define Max(a,b) ((a>=b)? a : b) | |
#define Min(a,b) ((a<=b)? a : b) | |
#define pb push_back | |
#define MOD 1000000007 | |
#define MP make_pair | |
#define vi vector<int> | |
#define vll vector<ll> | |
#define MAX 3000010 | |
//typedef __int128 bigll; | |
int a[1000010]; | |
int main() | |
{ | |
//ios_base::sync_with_stdio(false); | |
//cin.tie(NULL); | |
//FILE*f=freopen("input.txt","r",stdin); | |
//FILE*o=freopen("output.txt","w",stdout); | |
int n,t; | |
scanf("%d",&t); | |
for(int tc=1;tc<=t;tc++) | |
{ | |
scanf("%d",&n); | |
for(int i=0;i<n;i++)scanf("%d",&a[i]); | |
sort(a,a+n); | |
int mx = a[n-1]; | |
for(int i=n-2;i>=0;i--) | |
{ | |
mx=Max(mx,(mx|a[i])); | |
} | |
printf("Case %d: %d\n",tc,mx); | |
} | |
//fclose(f); | |
//fclose(o); | |
return 0; | |
} |