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

Codeforces Round #371 (Div. 2) C

时间:2016-09-18 06:29:30      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

传送门 

 map或者字典数的应用 简单题

题意:

思路:

AC代码:

 

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cmath>
 4 #include<map>
 5 #include<algorithm>
 6 #include<cstdio>
 7 #define max(a,b) a>b?a:b
 8 #define F(i,a,b) for(int i=a;i<=b;i++)
 9 #define mes(a,b) memset(a,b,sizeof(a))
10 #define INF 0x3f3f3f3f
11 #define LL long long
12 using namespace std;
13 const int N=10010,MAX=1000100;
14 
15 void fun(char *s)
16 {
17     int l = 0;
18     for(int i=0; i<strlen(s); i++)
19     {
20         if(s[i] == 0)
21             l++;
22         else
23             break;
24     }
25     for(int i=l-1; i<=strlen(s); i++)
26     {
27         s[i-l+1] = s[i+1];
28     }
29     if(*s == \0)
30     {
31         *s = 0;
32         s[1] = \0;
33     }
34 }
35 
36 int main()
37 {
38     int n;
39     char c,s[20];
40     map<string,int>M;
41     scanf("%d",&n);
42     while(n--)
43     {
44         cin>>c>>s;
45         int l = strlen(s);
46         for(int i=0; i<l; i++)
47         {
48             if(s[i]&1)
49                 s[i] = 1;
50             else
51                 s[i] = 0;
52         }
53         //puts(s);
54         fun(s);
55         //puts(s);
56         if(c == +)
57             M[s]++;
58         if(c == -)
59             M[s]--;
60         if(c == ?)
61             cout<<M[s]<<endl;
62     }
63     return 0;
64 }

 

Codeforces Round #371 (Div. 2) C

标签:

原文地址:http://www.cnblogs.com/max88888888/p/5880240.html

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