码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces 4C

时间:2014-08-02 18:03:13      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   

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 }

 

CodeForces 4C,布布扣,bubuko.com

CodeForces 4C

标签:style   blog   color   os   io   for   ar   div   

原文地址:http://www.cnblogs.com/Mr-Xu-JH/p/3887126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!