Codeforces Round #478 (Div. 2) A Aramic script[ 思维 + set]

A
 
A. Aramic script
time limit per test : 1 second
memory limit per test : 256 megabytes
input : standard input
output : standard output

In Aramic language words can only represent objects.

Words in Aramic have special properties:

  • A word is a root if it does not contain the same letter more than once.
  • root and all its permutations represent the same object.
  • The root xx of a word yy is the word that contains all letters that appear in yy in a way that each letter appears once. For example, the rootof "aaaa", "aa", "aaa" is "a", the root of "aabb", "bab", "baabb", "ab" is "ab".
  • Any word in Aramic represents the same object as its root.

You have an ancient script in Aramic. What is the number of different objects mentioned in the script?

Input

The first line contains one integer nn (1n1031≤n≤103) — the number of words in the script.

The second line contains nn words s1,s2,,sns1,s2,…,sn — the script itself. The length of each string does not exceed 103103.

It is guaranteed that all characters of the strings are small latin letters.

Output

Output one integer — the number of different objects mentioned in the given ancient Aramic script.

Examples
input
Copy
5
a aa aaa ab abb
output
Copy
2
input
Copy
3
amer arem mrea
output
Copy
1
Note

In the first test, there are two objects mentioned. The roots that represent them are "a","ab".

In the second test, there is only one object, its root is "amer", the other strings are just permutations of "amer".

题意:给n个字符串,求去重后,不同字符串的个数(不考虑字典序)。

思路:要求去重排序后,字符串的数量,这样用set去重,然后再用26大小的数组记录出现的字母,然后再读出来,计算个数。。。

代码

#include<bits/stdc++.h>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 1e3+7;
int n, v[26];
set< string > st;
string s;

int main()
{
    while(~scanf("%d",&n))
    {
        for(int i = 0; i < n; i++)
        {
            memset(v, 0, sizeof(v));
            cin >> s;
            for(int j = 0; j < s.length(); j++) v[s[j] - 'a']++;
            s.erase();
            for(int j = 0; j < 26; j++)
                if(v[j]>0) s += (j + 'a');
            st.insert(s);
        }
        cout << st.size() << endl;
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值