codeforces 4C. Registration system (字符串hash)

题目链接

题意:网站的注册系统..处理用户要注册的用户名,如果数据库中没有重名输出OK,否则输出要注册的用户名的字符串+num,num的大小为之前一共有多少个用户试图用该用户名。

思路:hash一下。。。

/* ***********************************************
Author :111qqz
Created Time :2016年11月22日 星期二 19时00分58秒
File Name :code/cf/problem/4C.cpp
************************************************ */

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair

using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
unsigned int  BKDHash(char *str)
{
    unsigned int seed = 113;
    unsigned hash = 0 ;
    while (*str) hash = hash*seed+(*str++);
    return (hash&0x7fffffff);
}
map<int,int>mp;
int n;
const int N=1E5+7;
char str[33];
int main()
{
	#ifndef  ONLINE_JUDGE 
	freopen("code/in.txt","r",stdin);
  #endif
	cin>>n;
	for ( int i = 1 ; i <= n ; i++)
    	{
	    scanf("%s",str);
	    int id = BKDHash(str);
	    if (!mp[id])
	    {
		puts("OK");
		mp[id] = 1;
	    }
	    else
	    {
		printf("%s%d\n",str,mp[id]);
		mp[id]++;
	    }
	    
	}

  #ifndef ONLINE_JUDGE  
  fclose(stdin);
  #endif
    return 0;
}