ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

CF4C--Registration System翻译

2022-01-25 23:03:22  阅读:164  来源: 互联网

标签:OK name database -- CF4C system System 名字 new


原题链接--

https://acs.jxnu.edu.cn/problem/CF4Chttps://acs.jxnu.edu.cn/problem/CF4C

Registration System

 5000ms  65536K

描述:

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.

译文: 在伯兰一个新的电子邮件服务"Berlandesk"即将在未来开放。现场管理人员希望尽快启动他们的项目,那是为什么他们向你寻求帮助。你的建议是实现现场注册系统的原型。这个系统按照如下原理来运行。

每次一个新的使用者想要登陆,他要递交名字给系统。如果名字不在系统的数据库中,它将被插入到数据库中,然后使用者会得到OK的回应,来认证成功的登陆。如果名字已经存在系统的数据库中,系统将会制造一个新的使用者名字,呈现给使用者作为一个提示并插入这个提示进入数据库中。新名字的形式遵循以下规则。从1开始的数字,一个接一个的附加在名字后面(名字1,名字2,...),在这些数字中至少i是建立的以至于名字i之前不存在系统的数据库中。

输入:

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.

译文:第一行包含数字 n (1 ≤ n ≤ 105)。接下来n行包含系统的请求。每个请求都不是空白行,并由不多于32个字符组成,字符都是小写的拉丁字母。

输出:

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.

译文:输出n行,都是对系统请求的回应:成功注册回应OK,否则用一个新名字提示,如果请求的名字已经存在。

样例输入:

4
abacaba
acaba
abacaba
acab

样例输出:

OK
OK
abacaba1
OK

样例输入:

6
first
first
second
second
third
third

样例输出:

OK
first1
OK
second1
OK
third1

标签:OK,name,database,--,CF4C,system,System,名字,new
来源: https://blog.csdn.net/m0_63925069/article/details/122692910

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有