CodeForces 975A Aramic script

Description:

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.
  • A 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 root of "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".
题目大意:

求给的一系列字符串中有多少个“根”, 其实就是有多少种不同类型的字符串。所谓同一种类型的字符串比如 a aa aaa 它们都属于‘a’, ab abb 都属于‘ab’。 根的字母必须只出现一次, 根的全排列也同属一种。
解题思路:

当时这题写的真的很辣鸡。
赛后在这里先感慨一下set的好用! 然后题就写出来了。。。 把字符串一个个塞进set里, 判断是否出现过相同的根, 如果没出现放进root里, 最后统计个数即可。

代码:
#include <iostream>
#include <sstream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <iomanip>
#include <utility>
#include <string>
#include <cmath>
#include <vector>
#include <bitset>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
const int dir[9][2] = { 0, 1, 0, -1, 1, 0, -1, 0, 1, 1, 1, -1, -1, 1, -1, -1, 0, 0 };
const int inf = 0x3f3f3f;
const ll ll_inf = (ll) 1e15;
const double pi = acos(-1.0);
const int mod = (ll) 1e9 + 7;
const int Max = (int) 1e3 + 51;
const ld eps = 1e-10;
/*tools:
*ios::sync_with_stdio(false);
*freopen("input.txt", "r", stdin);
*/
set < char> S, root[Max];
int main() {
    int n;
    int cnt = 0;
    string st;

    cin >> n;
    for (int i = 0; i < n; ++i) {
        S.clear();
        cin >> st;
        for (int j = 0; j < st.size(); ++j)
            S.insert(st[j]);
        set<char>::iterator l;
        int f = 0;
        for (int k = 0; k < cnt; ++k) {
            if (root[k] == S) {
                f = 1;
                break;
            }
        }
        if (!f) {
            root[cnt] = S;
            cnt++;
        }
    }
    printf("%d\n", cnt);
    return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值