码迷,mamicode.com
首页 > 其他好文 > 详细

国庆思维

时间:2018-10-04 11:42:22      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:printf   algo   names   print   stream   class   i++   国庆   个数   

codeforces 1008 c

题意:

有n个数,看怎么换能使得这个位置的数比原来位置的数大。

贪心,只需要最二的位置换第一大的数,第三大的位置换第二大的数:

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
typedef long long ll;
using namespace std;

int main()
{

    int n,a[100010],b[100010],i,j,ge=0;
    scanf("%d",&n);
    for(i=0;i<=n-1;i++)
        scanf("%d",&a[i]);
    sort(a,a+n);
    j=0;
    for(i=n-1;i>=0;i--)
        b[j++]=a[i];
        j=0;
    for(i=n-1;i>=0;i--)
    {
        if(b[j]>a[i])
        {
            ge++;
            j++;
        }
    }
    printf("%d\n",ge);

}

 

国庆思维

标签:printf   algo   names   print   stream   class   i++   国庆   个数   

原文地址:https://www.cnblogs.com/bhd123/p/9739375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!