[HDU5688]2016"百度之星" - 资格赛 Problem D

Posted Mrsrz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[HDU5688]2016"百度之星" - 资格赛 Problem D相关的知识,希望对你有一定的参考价值。

题目大意:给你n个字符串,如果一个字符串可以通过重新排列变成另一个字符串,则认为这两个字符串相等。每输入一个字符串,输出这个字符串和与它相等的之前出现了几次。

解题思路:我们可以用map保存一个字符串出现的次数,对于每个读进来的串,先把它排序一遍即可。由于字符串长度最大只有40,排序时间几乎可以忽略。

于是时间复杂度就只有map的$O(n\log n)$了。

C++ Code:

 

#include<iostream>
#include<map>
#include<algorithm>
#include<string>
using namespace std;
map<string,int>p;
int n;
int main(){
	ios::sync_with_stdio(0);
	cin>>n;
	string s;
	while(n--){
		cin>>s;
		sort(s.begin(),s.end());
		printf("%d\n",p[s]++);
	}
	return 0;
}

 

以上是关于[HDU5688]2016"百度之星" - 资格赛 Problem D的主要内容,如果未能解决你的问题,请参考以下文章

hdu 5698 瞬间移动(2016"百度之星" - 初赛(Astar Round2B)——数学题)

hdu 5685 Problem A(2016"百度之星" - 资格赛(Astar Round1)——线段树)

HDU 5698 瞬间移动 (2016"百度之星" - 初赛(Astar Round2B) 1003)

hdu5696区间的价值 -- 2016"百度之星" - 初赛(Astar Round2B)

HDU 5690 All X的多种算法(2016"百度之星" - 初赛(Astar Round2A)1001)

[HDU5687]2016"百度之星" - 资格赛 Problem C