CF644C Hostname Aliases
Description
There are some websites that are accessible through several different addresses. For example, for a long time Codeforces was accessible with two hostnames codeforces.com and codeforces.ru.
You are given a list of page addresses being queried. For simplicity we consider all addresses to have the form http://\[/\], where:
- — server name (consists of words and maybe some dots separating them),
- / — optional part, where consists of words separated by slashes.
We consider two to correspond to one website if for each query to the first there will be exactly the same query to the second one and vice versa — for each query to the second there will be the same query to the first one. Take a look at the samples for further clarifications.
Your goal is to determine the groups of server names that correspond to one website. Ignore groups consisting of the only server name.
Please note, that according to the above definition queries http:// and http:/// are different.
Input Format
The first line of the input contains a single integer $ n $ ( $ 1
Output Format
First print $ k $ — the number of groups of server names that correspond to one website. You should count only groups of size greater than one.
Next $ k $ lines should contain the description of groups, one group per line. For each group print all server names separated by a single space. You are allowed to print both groups and names inside any group in arbitrary order.