Codeforces Gym 100269B Ballot Analyzing Device 模拟题
Ballot Analyzing Device
题目连接:
http://codeforces.com/gym/100269/attachments
Description
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).
Sample Input
4 7
Loudy
Apples
Dogman
Miller
.X..
X...
....
..X.
..XX
..X.
..X.
Sample Output
Dogman 42.86%
Loudy 14.29%
Apples 14.29%
Miller 0.00%
Invalid 28.57%
Hint
题意
有m个人给n个人投票,每个人最多给一个人投票,如果投了两个人或者没有投票的话,那么这张票就算无效
然后让你按照票数高低排序,如果票数相同,就按照一开始的顺序输出
题解:
模拟题,当然也是水题
代码
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1050;
char s[maxn];
pair<int,pair<int,string> > p[maxn];
int main()
{
freopen("bad.in","r",stdin);
freopen("bad.out","w",stdout);
int n,m;
scanf("%d%d",&n,&m);
int t=0;
for(int i=0;i<n;i++)
cin>>p[i].second.second,p[i].second.first=n-i;
for(int i=0;i<m;i++)
{
scanf("%s",s);
int flag = 0,cnt = 0;
for(int j=0;j<n;j++)
{
if(s[j]=='X')
flag=j,cnt++;
}
if(cnt==0||cnt>1)
t++;
else
p[flag].first++;
}
sort(p,p+n);
for(int i=n-1;i>=0;i--)
{
cout<<p[i].second.second<<" ";
printf("%.2f%%\n",100.0*p[i].first/m);
}
printf("Invalid %.2f%%\n",100.0*t/m);
}
Codeforces Gym 100269B Ballot Analyzing Device 模拟题的更多相关文章
- Codeforces Gym 100269A Arrangement of Contest 水题
Problem A. Arrangement of Contest 题目连接: http://codeforces.com/gym/100269/attachments Description Lit ...
- Gym 100646 Problem C: LCR 模拟题
Problem C: LCR 题目连接: http://codeforces.com/gym/100646/attachments Description LCR is a simple game f ...
- Educational Codeforces Round 2 A. Extract Numbers 模拟题
A. Extract Numbers Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/600/pr ...
- Codeforces Beta Round #3 C. Tic-tac-toe 模拟题
C. Tic-tac-toe 题目连接: http://www.codeforces.com/contest/3/problem/C Description Certainly, everyone i ...
- Codeforces Gym 100463B Music Mess Hash 逻辑题
Music Mess Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100463/attachments ...
- codeforces Gym 100187H H. Mysterious Photos 水题
H. Mysterious Photos Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100187/p ...
- codeforces Gym 100500H H. ICPC Quest 水题
Problem H. ICPC QuestTime Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100500/a ...
- Codeforces Gym 100513F F. Ilya Muromets 水题
F. Ilya Muromets Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100513/probl ...
- HNU 12845 Ballot Analyzing Device
题目链接:http://acm.hnu.cn/online/?action=problem&type=show&id=12845&courseid=270 解题报告:有m个认给 ...
随机推荐
- python3中处理url异常
import urllib.request import urllib.error url = 'http://c.telunyun.com/Chart/getJsonData?market=1' d ...
- Linux线程基础函数
1. 线程标识: (1) 比较两个线程ID: #include <pthread.h> int pthread_equal(pthread_t tid1, pthread_t tid2); ...
- linux中时间精度的获取问题【转】
转自:http://www.xuebuyuan.com/877633.html 目前项目需要,需要对时间进行基准,基准的精度在微秒.下午老刘给我说不能用do_gettimeofday因为他的精度虽然可 ...
- Lodash使用示例(比较全)
<html> <head> <meta name="viewport" content="width=device-width" ...
- 获取file中字段,写入到TXT文件中
一下代码省略了很多,哈哈哈 a.txt文件 uid,type,pointx,pointy,name1,9,911233763,543857286,区间测速起点3,9,906371086,5453354 ...
- 阿里CDN核心技术解密
1. 阿里CDN组件分层 其中应用层主要用到的技术有负载均衡和缓存, 负载均衡包括全局负载均衡和本地负载均衡; 缓存通过HTTP缓存服务器Swift做HTTP缓存. 全局负载均衡以DNS服务器Phar ...
- python库-urllib
urllib库提供了一系列操作url的功能,是python处理爬虫的入门级工具,网上的学习资料也很多.我做爬虫是一开始就用了Scrapy框架,并不是一步步从urllib开始的,反而是在后来解决一些小问 ...
- 魔法上网之Ubuntu部署“酸酸”
“酸酸”,即s*h*a*d*o*w*s*o*c*k*s,用于魔法上网,用python写成. 在ubuntu环境下,用pip包管理工具可以非常方便地安装“酸酸”服务:ssserver. 先安装pip(假 ...
- 处理form表单提交后返回值的处理办法【html5】
同事朋友ajax,最近在弄公司业务电话机,自主搭建,买的设备. 其中最主要功能是前端发起呼叫,通过浏览器触发设备进行呼叫功能,走后台呼叫还不行. 需求是这样的: 前端给设备ip发送特定的一段xml信息 ...
- 如何使用 Java 对 List 中每个对象元素按时间顺序进行排序
如何使用 Java 对 List 中每个对象元素按时间顺序进行排序 Java 实现 import java.text.SimpleDateFormat; import java.util.ArrayL ...