首页 > 学院 > 开发设计 > 正文

codeforces 4c Registration system 字符串 map应用

2019-11-08 02:50:48
字体:
来源:转载
供稿:网友

题目:

C. Registration systemtime limit per test5 secondsmemory limit per test64 megabytesinputstandard inputoutputstandard output

A new e-mail service "Berlandesk" is going to be opened in Berland in the near future. The site administration wants to launch their PRoject as soon as possible, that's why they ask you to help. You're suggested to implement the prototype of site registration system. The system should work on the following principle.

Each time a new user wants to register, he sends to the system a request with his name. If such a name does not exist in the system database, it is inserted into the database, and the user gets the response OK, confirming the successful registration. If the name already exists in the system database, the system makes up a new user name, sends it to the user as a prompt and also inserts the prompt into the database. The new name is formed by the following rule. Numbers, starting with 1, are appended one after another to name(name1, name2, ...), among these numbers the least i is found so that namei does not yet exist in the database.

Input

The first line contains number n (1 ≤ n ≤ 105). The following n lines contain the requests to the system. Each request is a non-empty line, and consists of not more than 32 characters, which are all lowercase Latin letters.

Output

Print n lines, which are system responses to the requests: OK in case of successful registration, or a prompt with a new name, if the requested name is already taken.

Examplesinput
4abacabaacabaabacabaacaboutput
OKOKabacaba1OKinput
6firstfirstsecondsecondthirdthirdoutput
OKfirst1OKsecond1OKthird1

代码:

#include<iostream>#include<cstring>#include<cstdio>#include<cstdlib>#include<ctype.h>    //tower()#include<set>  #include<map>  #include<iomanip>// cout<<setprecision(1)<<fixed<<a;#include<vector>   #include<cmath>	#include<algorithm>#include<bitset>#include<limits.h>#include<stack>#include<queue>using namespace std;const int maxn=10000010;const int inf=0x3f3f3f3f;char s[34];map<string,int> Map;int t;int main(){	scanf("%d",&t);	getchar();//吸收换行	Map.clear(); //置为零 	for(int i=0;i<t;i++){		scanf("%s",s);		if(Map[s]) printf("%s%d/n",s,Map[s]);		else printf("OK/n");		Map[s]++;	}	return 0;}

STL讲解:http://blog.csdn.net/u012860063/article/details/24435211


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表