Aramic script(CF-#478-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".


虽说是水题,但是写题解真的不清楚自己和别人的想法真不同。

扫描二维码关注公众号,回复: 1014526 查看本文章

一开始我利用的是Map去重。

后来得知君玉学长直接去重。把两个写法都写一下吧。

我的做法:优点是直接找出来 按a-z的顺序

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n,ans=0;
    scanf("%d",&n);
    string tmp;
    map<string,int>mp;
    while(n--){
         cin>>tmp;
         char a[1000]={'\0'},cnt=0;
         int vis[28]={0};
         for(int i=0;i<tmp.size();i++){
            vis[tmp[i]-'a']++;
         }
         for(int i=0;i<26;i++){
            if(vis[i]!=0)
                a[cnt++]=i+'a';
         }
         string s=a;
         //cout<<s<<endl;
         if(mp[s]==0){
            mp[s]++;
            ans++;
         }
    }
    printf("%d\n",ans);
    return 0;
}

利用unique+sort+erase 函数实现去重

代码很短

#include<bits/stdc++.h>
using namespace  std;
int main()
{
    int n,ans=0;
    scanf("%d",&n);
    string s;
    map<string,int>my;
    while(n--){
        cin>>s;
        sort(s.begin(),s.end());
        s.erase((unique(s.begin(),s.end())),s.end());
        //cout<<s<<endl;
        if(my[s]==0){
            my[s]++;
            ans++;
        }
    }
    printf("%d\n",ans);
    return 0;
}

猜你喜欢

转载自blog.csdn.net/z_sea/article/details/80274140