zoukankan      html  css  js  c++  java
  • codeforces Codeforces Round #318 div2 A. Bear and Elections 【优先队列】

    A. Bear and Elections
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Limak is a grizzly bear who desires power and adoration. He wants to win in upcoming elections and rule over the Bearland.

    There are n candidates, including Limak. We know how many citizens are going to vote for each candidate. Now i-th candidate would get ai votes. Limak is candidate number 1. To win in elections, he must get strictly more votes than any other candidate.

    Victory is more important than everything else so Limak decided to cheat. He will steal votes from his opponents by bribing some citizens. To bribe a citizen, Limak must give him or her one candy - citizens are bears and bears like candies. Limak doesn't have many candies and wonders - how many citizens does he have to bribe?

    Input

    The first line contains single integer n (2 ≤ n ≤ 100) - number of candidates.

    The second line contains n space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 1000) - number of votes for each candidate. Limak is candidate number 1.

    Note that after bribing number of votes for some candidate might be zero or might be greater than 1000.

    Output

    Print the minimum number of citizens Limak must bribe to have strictly more votes than any other candidate.

    Sample test(s)
    Input
    5
    5 1 11 2 8
    Output
    4
    Input
    4
    1 8 8 8
    Output
    6
    Input
    2
    7 6
    Output
    0

    题目描述:给你n个人,第二行有n个数,每个数代表第i个人的选票数量。现在第1号人想要赢得选举。所以在选票数量上1号候选人的选票数量
    必须严格大于其他候选人的选票数。如果1号候选人的选票不能让他被选举上,他就会去投其他人的。直到他的票数最多。问:他最少需要偷多少张?
    (偷的选票可以来自其他的任何人)

    将2--n号人的选票数加入到一个大数优先的优先队列。只要1号候选人的票数少于对首人的,就将队首元素取出队列&&值-1, 1号人的+1.计数器+1,再将这个
    元素加入到优先队列中。直到1号人的票数>队首元素。

    code:
    #include <stdio.h>
    #include <string.h>
    #include <queue>
    #include <algorithm>
    
    using namespace std;
    
    int main()
    {
        int n;
        while(scanf("%d", &n)!=EOF)
        {
            int head;
            priority_queue<int, vector<int>, less<int> >q;
            scanf("%d", &head);
            int cur;
            for(int i=2; i<=n; i++){
                scanf("%d", &cur); q.push(cur);
            }
            int ans=0;
            while(head<=q.top())
            {
                cur=q.top(); q.pop();
                head++; cur--; ans++;
                q.push(cur);
            }
            printf("%d
    ", ans);
        }
        return 0;
    }
    
    
    
    
    
    
  • 相关阅读:
    有关怎样入门ACM
    在线安装eclipse中html/jsp/xml editor插件(很可靠)
    如何才干高速成为优秀的程序猿
    JavaScript必知的特性(继承)
    Maven构建真正的J2EE项目
    HLJU 1223: 寻找区间和 (交替推进法)
    重要经验五:block作为属性的注意事项
    Android Studio第一次启动的Fetching android sdk component information的问题
    树莓派学习笔记——apt方式安装opencv
    大型项目开发: 隔离 (《大规模C++程序设计》书摘)
  • 原文地址:https://www.cnblogs.com/yspworld/p/4771064.html
Copyright © 2011-2022 走看看