首页 > 代码库 > CodeForces 4C
CodeForces 4C
MAP容器简单题
1 #include <iostream> 2 #include <cstdio> 3 #include <map> 4 #include <string.h> 5 #include <cstring> 6 #include <string> 7 using namespace std; 8 map<string,int> b; 9 int main(){10 int n;11 char s[35];12 scanf("%d",&n);13 getchar();14 for(int i=0;i<n;i++){15 scanf("%s",s);16 if(b[s]!=0){17 int k=b[s];18 printf("%s%d\n",s,k);19 b[s]++;20 }21 else {22 printf("OK\n");23 b[s]++;24 }25 }26 return 0;27 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。