Gym 100269B-Ballot Analyzing Device

Input file: bad.in
Output file: bad.out
Time limit: 2 seconds
Memory limit: 256 megabytes
Election committee of Flatland is preparing for presidential elections. To minimize human factor in ballot
counting they decided to develop an automated Ballot Analyzing Device (BAD).
There are n candidates running for president. The ballot contains one square field for each candidate.
The voter must mark exactly one of the fields. If no field is marked or there are two or more marked
fields, the ballot is invalid. Each voter puts his/her ballot to a special scanner in BAD. The scanner
analyzes marks on the ballot and creates a special voting string of n characters: ‘X’ for marked field and
‘.’ for unmarked one. Now voting strings must be analyzed to get the report. Your task is to develop a
report generator for BAD.
Given voting strings for all ballots, your program must print the voting report. Candidates in the report
must be arranged in order of decreasing number of votes. If two candidates have the same number of
votes, they must have the same order as in a voting ballot. For each candidate calculate his/her result
in percent (if the candidate received p votes, the result in percent is 100p/m). The last line of the report
must indicate the percentage of the invalid ballots.
Input
The first line contains two integers n and m — the number of candidates and the number of ballots
(2 ≤ n ≤ 10; 1 ≤ m ≤ 1000). The following n lines contain last names of candidates. Each name is a
string of at most 100 English letters. There is no candidate named “Invalid”.
Then m lines follow, each of them contains one voting string.
Output
Print n+ 1 lines. First print results for candidates in percent. For each candidate print his/her last name
followed by a space and then his/her result in percent and a percent sign ‘%’. The last line must specify
the percentage of invalid ballots: a word “Invalid” followed by a space, the percentage of invalid ballots
and a percent sign.
Round all numbers to exactly two digits after the decimal point. If the number is exactly in the middle
of two representable numbers, output the greater one (e.g. output “12.35” for 12.345).
Example
这里写图片描述

题意:求每个人的选票比例排序后输出。

代码:

#include <cstdio>
#include <algorithm>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <utility>
using namespace std;
const int maxn=1050;
char s[maxn];
pair<int,pair<int,string> >p[maxn];
int main (void)
{
//  freopen("bad.in","r",stdin);
//  freopen("bad.out","w",stdout);

int n,m;
cin>>n>>m;
int a=0;
for(int i=0;i<n;i++)
{
    cin>>p[i].second.second;
    //p[i].second.first=n-i;
    p[i].second.first=i;
}

for(int i=0;i<m;i++)
{
    scanf("%s",s);
    int flag,ans;
    flag=0;ans=0;
    for(int j=0;j<n;j++)
    {
        if(s[j]=='X')
        {
            flag=j;
            ans++;
        }
    }
    if(ans!=1)
    a++;
    else
    p[flag].first++;
}

sort(p,p+n);
for(int i=n-1;i>=0;i--)
{
//printf("%s ",p[i].second.second);

cout<<p[i].second.second<<" ";
printf("%.2f%%\n",100.0*p[i].first/m);
}
printf("Invalid %.2f%%\n",100.0*a/m);

return 0;
} 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值