As meticulous Gerald sets the table and caring Alexander sends the postcards, Sergey makes snowmen. Each showman should consist of three snowballs: a big one, a medium one and a small one. Sergey's twins help him: they've already made n snowballs with radii equal to r1, r2, ..., rn. To make a snowman, one needs any three snowballs whose radii are pairwise different. For example, the balls with radii 1, 2 and 3 can be used to make a snowman but 2, 2, 3 or 2, 2, 2 cannot. Help Sergey and his twins to determine what maximum number of snowmen they can make from those snowballs.
Input
The first line contains integer n (1 ≤ n ≤ 105) — the number of snowballs. The next line contains n integers — the balls' radii r1, r2, ..., rn (1 ≤ ri ≤ 109). The balls' radii can coincide.
Output
Print on the first line a single number k — the maximum number of the snowmen. Next k lines should contain the snowmen's descriptions. The description of each snowman should consist of three space-separated numbers — the big ball's radius, the medium ball's radius and the small ball's radius. It is allowed to print the snowmen in any order. If there are several solutions, print any of them.
Sample 1
Inputcopy | Outputcopy |
---|---|
7 1 2 3 4 5 6 7 |
2 3 2 1 6 5 4 |
Sample 2
Inputcopy | Outputcopy |
---|---|
3 2 2 3 |
0 |
现在来做雪人,每个雪人由三个不同大小的雪球构成:一个大的,一个中等的,一个小的。现在有n个雪球半径分别为r1,r2,...,rn为了做雪人,三个雪球的大小必须两两不同。例如,半径分别为 1,2,3 的雪球可以做成雪人,但2,2,3或2,2,2不行。现在需要尽可能做更多雪人。
第一行是一个整数n(1<=n<=10^5)雪球的数量. 接下来有n行整数 — 雪球的半径r1,r2,...,rn(1<=ri<=10^9)
第一行是一个数kk最大的雪人数. 接下来kk行是每个雪人的描述大雪球的半径,中等雪球的半径,小雪球的半径. 允许按任意顺序输出雪人描述. 如果有多种方案,输出任意一个
#include
#include
#include
#include
#include
#include