std::unordered_multiset<int> const build_unordered_multiset()
{
    typedef std::unordered_set<int> int_set;
    typedef std::unordered_multiset<int> int_multiset;
    int_set const data = build_unordered_set();
    return int_multiset(data.begin(), data.end());
}