HDU-2700 Parity

         http://acm.hdu.edu.cn/showproblem.php?pid=2700              

题目意思很重要;  //e:是要使字符串中1的个数变成偶数。o:是要使字符串中1的个数变成奇数         

               Parity

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1855    Accepted Submission(s): 1447

Problem Description
A bit string has odd parity if the number of 1's is odd. A bit string has even parity if the number of 1's is even.Zero is considered to be an even number, so a bit string with no 1's has even parity. Note that the number of 0's does not affect the parity of a bit string.
 
Input
The input consists of one or more strings, each on a line by itself, followed by a line containing only "#" that signals the end of the input. Each string contains 1–31 bits followed by either a lowercase letter 'e' or a lowercase letter 'o'.
 
Output
Each line of output must look just like the corresponding line of input, except that the letter at the end is replaced by the correct bit so that the entire bit string has even parity (if the letter was 'e') or odd parity (if the letter was 'o').
 
Sample Input
101e
010010o
1e
000e
110100101o
#
 
Sample Output
1010
0100101
11
0000
1101001010
 
Source
 
Recommend
zty
 1 //e:是要使字符串中1的个数变成偶数。o:是要使字符串中1的个数变成奇数。
 2 #include<stdio.h>
 3 #include<string.h>
 4 int main()
 5 {
 6     int i,l,r;
 7     char str[100];
 8     while(~scanf("%s",str)&&str[0]!='#')
 9     {
10            r=0;
11            l=strlen(str);
12         for(i=0;str[i]!=0;i++)
13         {
14             if(str[i]=='1')
15                 r++;
16         }
17         for(i=0;i<l-1;i++)
18             printf("%c",str[i]);
19         if(str[l-1]=='e')
20         {
21             if(r%2==0)
22                 printf("0");
23             else
24                 printf("1");
25         }
26         if(str[l-1]=='o')
27             if(r%2!=0)
28                 printf("0");
29             else
30                 printf("1");
31         printf("
");
32     }
33     return 0;
34 }
原文地址:https://www.cnblogs.com/cancangood/p/3357857.html