Increasing Sequence with Fixed OR
Problem Statement
You are given a positive integer ๐. Find the longest sequence of positive integers ๐=[๐1,๐2,โฆ,๐๐] that satisfies the following conditions, and print the sequence:
๐๐โค๐ for all 1โค๐โค๐.
๐ is strictly increasing. That is, ๐๐>๐๐โ1 for all 2โค๐โค๐.
๐๐|๐๐โ1=๐ for all 2โค๐โค๐, where | denotes the bitwise OR operation.
Input
Each test contains multiple test cases. The first line contains the number of test cases ๐ก (1โค๐กโค1000). Description of the test cases follows.
The only line of each test case contains one integer ๐ (1โค๐โค1018).
It's guaranteed that the sum of lengths of the longest valid sequences does not exceed 5โ 105.
Output
For each testcase, print two lines. In the first line, print the length of your constructed sequence, ๐. In the second line, print ๐ positive integers, denoting the sequence. If there are multiple longest sequences, you can print any of them.
ExampleinputCopy
outputCopy
Intuition
Links
https://codeforces.com/contest/1988/problem/C
Video Links
https://www.youtube.com/watch?v=sAUI0T6r9TA&t=1161s&ab_channel=CompetitiveProgrammingwithShayan
Approach 1:
Approach 2:
Approach 3:
Approach 4:
Similar Problems
Last updated