UVA 10142 Australian Voting(模拟)

题意:澳大利亚投票系统要求选民们将所有候选人按愿意选择的程度排序,一张选票就是一个排序。一开始,每张选票的首选项将被统计。若有候选人得票超过50%,他讲直接胜出;否则,所有并列最低的候选人出局,而那些将出局候选人排在第一位的选票将被重新统计为排名最高的未出局候选人。这一筛选过程将持续进行,直到某个候选人得到超过50%的选票,或所有候选人得票相同。

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
const int N = 50;
#define INF 0x3fffffff
int vote[1050][N];
int out[N], cnt[N];
char name[N][100];
int num;
int main()
{
    int T, n, i, j;
    char str[1000];
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        getchar();
        for(i = 1; i <= n; i++)
            gets(name[i]);
        num = 0;
        while(gets(str) != NULL)
        {
            if(!strcmp(str, "")) break;
            int len = strlen(str);
            int s = 0, k = 0;
            for(i = 0; i < len; i++)
            {
                if(str[i] >= '0' && str[i] <= '9')
                    s = s * 10 + str[i] - '0';
                else
                {
                    vote[num][k++] = s;
                    s = 0;
                }
            }
            vote[num][k++] = s;
            num++;
        }
        memset(out, 0, sizeof(out));
        int flag = 0, rest = n, total = 0;
        while(rest > 1) //未出局候选人数超过1
        {
            total = 0; //总票数
            memset(cnt, 0, sizeof(cnt));
            for(i = 0; i < num; i++)
            {
                for(j = 0; j < n; j++)
                {
                    if(!out[vote[i][j]])
                    {
                        cnt[vote[i][j]]++;
                        total++;
                        break;
                    }
                }
            }
            for(i = 1; i <= n; i++)
                if(cnt[i] * 2 > total && !out[i])
                {
                    printf("%s\n",name[i]);
                    flag = 1;
                    break;
                }
            if(flag) break;
            int mmin = INF, mmax = 0;
            for(i = 1; i <= n; i++)
            {
                if(!out[i])
                {
                    mmin = min(mmin, cnt[i]);
                    mmax = max(mmax, cnt[i]);
                }
            }
            if(mmin == mmax)
                break;
            for(i = 1; i <= n; i++)
                if(cnt[i] == mmin)
                {
                    out[i] = 1;
                    rest--;
                }
        }
        if(!flag)
        {
            for(i = 1; i <= n; i++)
                if(!out[i])
                    printf("%s\n", name[i]);
        }
        if(T > 0)
            printf("\n");
    }
    return 0;
}

UVA 10142 Australian Voting(模拟),布布扣,bubuko.com

时间: 2025-01-04 20:47:39

UVA 10142 Australian Voting(模拟)的相关文章

UVa 10142 - Australian Voting

题目:澳大利亚选举,有n个候选人m个公民,每个公民对每个候选人有一个期望的优先级, 选举时,先按第一优先级分配选票,得票最少的候选人的投票,将按投票人的优先级, 重新分给留下的候选人,直到某人获得50%或以上的选票,或者剩下的人得票相同, 求选举结果. 分析:模拟.按照上述规则模拟即可,过程有点麻烦. 说明:数据给事有点恶心,注意到达50%就可以认为胜利了,不用超过╮(╯▽╰)╭. #include <algorithm> #include <iostream> #include

Uva - 1513 Moive collection ( 模拟栈 + 树状数组基本操作 )

Uva - 1513 Moive collection ( 模拟栈 + 树状数组基本操作 ) 题意: 一个书架,原来所有的书都是按顺序摆好的,书的编号从1开始到n 操作: 取出一本书,统计在这本书之前有多少本书,统计完之后,将这本书放在书架的第一位. 如:  1 2 3 4 5取4   4 1 2 3 5 (取之前,有3本书在4前面,取完后,将4放在栈顶)取4   4 1 2 3 5 (取之前,有0本书在4前面,取完后,将4放在栈顶)取2   2 4 1 3 5 (取之前,有2本书在2前面,取完

uva 1156 - Pixel Shuffle(模拟+置换)

题目链接:uva 1156 - Pixel Shuffle 题目大意:给定一个N*N的黑白位图,有7种操作,并且对应在指令后加上'-'即为操作的逆,给定N和一系列操作,(从最后一个开始执行),问说这一套指令需要执行多少次才能形成循环. 解题思路:模拟指令执行后获得一个置换,分解成若干的循环,各个循环长度的最小公倍数即使答案. #include <cstdio> #include <cstring> #include <algorithm> using namespace

UVa 213 信息编码!模拟!

背景:一次ac!!而且调试时间也短!!!!看来这个自定义函数,确实是一个好的方法!!构思又清晰,调试又明朗! 思路:一些单一的函数堆砌而成,每个函数有自己的功能. 学习:1.我是采用模拟手算二进制为十进制的方法,而小紫书上给出的方法似乎更简单:(这似乎透露除了字符串数转化普通数的方法)(普通二进制数,转化为十进制数就一位一位的拆分) //assumpt that temp[] have n charnumbers int decimal=0; for(int i = 0;i < n;i++){

uva 177:Paper Folding(模拟 Grade D)

题目链接 题意:一张纸,每次从右往左对折.折好以后打开,让每个折痕都自然的呈90度.输出形状. 思路:模拟折……每次折想象成把一张纸分成了正面在下的一张和反面在上的一张.维护左边和方向,然后输出.细节有点多. 代码: #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> using namespace std; #define N (1<<13)+

UVA 1368 DNA(模拟+贪心)

DNA (Deoxyribonucleic Acid) is the molecule which contains the genetic instructions. It consists of four different nucleotides, namely Adenine, Thymine, Guanine, and Cytosine as shown in Figure 1. If we represent a nucleotide by its initial character

UVA - 246 10-20-30 (模拟+STL)

Description  10-20-30  A simple solitaire card game called 10-20-30 uses a standard deck of 52 playing cards in which suit is irrelevant. The value of a face card (king, queen, jack) is 10. The value of an ace is one. The value of each of the other c

uva 202 Repeating Decimals 模拟

弱校连萌题目链接:http://acm.bnu.edu.cn/v3/contest_show.php?cid=5772#problem/G 需要先想到出现循环节意味着出现了以前出现过的余数 然后就自己手写一个大数除法 后来看别人博客发现其实不用STL也可以 检查余数是否出现过可以是常数级的 因为除数不大于3000 所以开一个3010的数组来存余数标记即可 当然我还是用的map 因为复杂度实在太松了 这题烦得很 注意“输出前50位”是指所有数字加起来50位... 不是小数点后50位...(哭晕在厕

UVA 12050 - Palindrome Numbers 模拟

题目大意:给出i,输出第i个镜像数,不能有前导0. 题解:从外层开始模拟 #include <stdio.h> int p(int x) { int sum, i; for(sum=i=1;i<=x;i++) sum *= 10; return sum; } int main() { int n, i, j, t, cs[1000], c; while(~scanf("%d", &n)) { if(n==0) break; i=1; while(n>9*