Computer Science, asked by yadavramdeo45, 5 hours ago

You have to perform the following operation N/2 times:
1. Select nums, nums; such that (i+j) from the list
2. Take their bitwise OR, add the value of the least significant set bit to the score
3. Delete those two numbers
If the selected numbers are 5=(101)2 and 7=(111)2 then the bitwise OR of the two numbers is 7=(111)2. So, the least significant bit of 7 1.e. 1= (001), will be added to the current score.
Notes
• H-based indexing is followed
• A bitwise OR is a binary operation that takes two bit patterns of equal length and performs the logical inclusive OR operation on each
pair of corresponding bits. The result in each position is O if both bits are 0, while otherwise, the result is 1.

Strings in 02 denote the binary representation.
Task
- 100.0
Print the maximum possible score.
Example
100.0
Assumptions

N-4
• nums = [1,2.1.4)
Approach
. For the given case pairing (1, 1), (2, 4) that is (nums/1), nums[3]), (nums[2],,nums[4]) with 1-based indexing results in a maximum score of
3. pairing like (4,1),(1, 2) that is (nums[4], nums/1). (nums(3), nums[2]) results in 2.
Hence, the answer is 3.

Answers

Answered by xxpalakxx2
1

Answer:

♩○♬☆____________________ Shayad kabhi na keh saku mein tumko kahe bina samjhlo tum shayad ♡︎~ ___________________♩✧♪●♩○♬☆

Birthdays are a new start, a fresh beginning and a time to pursue new endeavors with new goals. Move forward with confidence and courage. You are a very special person. May today and all of your days be amazing!” .. “Your birthday is the first day of another 365-day journey. Be the shining thread in the beautiful tapestry of the world to make this year the best ever. Enjoy the ride.”.. “Be happy! Today is the day you were brought into this world to be a blessing and inspiration to the people around you! You are a wonderful person! May you be given more birthdays to fulfill all of your dreams!” .. ""someone who is smart, gorgeous, funny and reminds me a lot of myself… from one fabulous chick to another! “Just wanted to be the first one to wish you happy birthday so I can feel superior to your other well-wishers. So, happy birthday!”❤

Similar questions