#D6989. Enumeration of Subsets III
Enumeration of Subsets III
Enumeration of Subsets III
You are given a set , which is a subset of . The set consists of . Print all subsets of . Note that we represent as 00...0001, 00...0010, 00...0100, ..., 10...0000 in binary respectively and the integer representation of a subset is calculated by bitwise OR of existing elements.
Constraints
Input
The input is given in the following format.
is the number of elements in , and represents elements in .
Output
Print the subsets ordered by their decimal integers. Print a subset in the following format.
: ...
Print ':' after the integer value , then print elements in the subset in ascending order. Separate two adjacency elements by a space character.
Example
Input
4 2 0 2
Output
0: 1: 0 4: 2 5: 0 2
inputFormat
Input
The input is given in the following format.
is the number of elements in , and represents elements in .
outputFormat
Output
Print the subsets ordered by their decimal integers. Print a subset in the following format.
: ...
Print ':' after the integer value , then print elements in the subset in ascending order. Separate two adjacency elements by a space character.
Example
Input
4 2 0 2
Output
0: 1: 0 4: 2 5: 0 2
样例
4
2 0 2
0:
1: 0
4: 2
5: 0 2
</p>