• HDU Cow Sorting (树状数组)


    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2838

                                    Cow Sorting

    Problem Description

    Sherlock's N (1 ≤ N ≤ 100,000) cows are lined up to be milked in the evening. Each cow has a unique "grumpiness" level in the range 1...100,000. Since grumpy cows are more likely to damage Sherlock's milking equipment, Sherlock would like to reorder the cows in line so they are lined up in increasing order of grumpiness. During this process, the places of any two cows (necessarily adjacent) can be interchanged. Since grumpy cows are harder to move, it takes Sherlock a total of X + Y units of time to exchange two cows whose grumpiness levels are X and Y.

    Please help Sherlock calculate the minimal time required to reorder the cows. 

    Input

    Line 1: A single integer: N
    Lines 2..N + 1: Each line contains a single integer: line i + 1 describes the grumpiness of cow i. 

    Output

    Line 1: A single line with the minimal time required to reorder the cows in increasing order of grumpiness. 

    Sample Input

    3

    2

    3

    1

    Sample Output

    7

    Hint

    Input Details

    Three cows are standing in line with respective grumpiness levels 2, 3, and 1.
    Output Details

    2 3 1 : Initial order.
    2 1 3 : After interchanging cows with grumpiness 3 and 1 (time=1+3=4).
    1 2 3 : After interchanging cows with grumpiness 1 and 2 (time=2+1=3). 

     

     1 #include<stdio.h>
     2 #include<string.h>
     3 #define ll __int64
     4 ll c[100000+5],v[100000+5];
     5 int n;
     6 int Lowbit(int k)
     7 {
     8     return (k&-k);
     9 }
    10 void update(int pos,int num,int val)
    11 {
    12     while(pos<=n)
    13     {
    14         c[pos]+=num;
    15         v[pos]+=val;
    16         pos+=Lowbit(pos);
    17     }
    18 }
    19 ll sum_count(int pos)
    20 {
    21     ll  s=0;
    22 
    23     while(pos>0)
    24     {
    25         s+=c[pos];
    26         pos-=Lowbit(pos);
    27     }
    28     return s;
    29 }
    30 ll sum(int pos)
    31 {
    32     ll s=0;
    33 
    34     while(pos>0)
    35     {
    36         s+=v[pos];
    37         pos-=Lowbit(pos);
    38     }
    39     return s;
    40 }
    41 int main()
    42 {
    43     int i,x;
    44     while(scanf("%d",&n)!=-1)
    45     {
    46         memset(c,0,sizeof(c));
    47         memset(v,0,sizeof(v));
    48         ll ans=0,k2,k1;
    49         for(i=1;i<=n;i++)
    50         {
    51             scanf("%d",&x);
    52             update(x,1,x);
    53             k1=i-sum_count(x);///到此为止  比x大的个数;
    54 /*sum_count[x] 为输入i个数的时候 x之前有sum_count[x]个比x小的数 用i相减则为大于x的个数*/
    55             if(k1!=0)
    56             {
    57             k2=sum(n)-sum(x);///到此为止  比x大的数的和;
    58             ans+=x*k1+k2;///到此为止 比x大的数与x交换之后的和;
    59             }
    60         }
    61         printf("%I64d
    ",ans);
    62     }
    63     return 0;
    64 }
    View Code

    /*坑爹的题    必须用 __int64 不能用long  long  不能用int  ╮(╯▽╰)*/

     

     

  • 相关阅读:
    通过百度地图API实现搜索地址--第三方开源--百度地图(三)
    对图片进行各种样式裁对图片进行各种样式裁剪:圆形、星形、心形、花瓣形等剪:圆形、星形、心形、花瓣形等--第三方开源--CustomShapeImageView
    仿UC天气下拉和微信下拉眼睛头部淡入淡出--第三方开源--PullLayout
    【英语】Bingo口语笔记(14)
    【前端】HTML入门笔记
    【英语】Bingo口语笔记(13)
    【英语】20141013 生词
    【英语】20141011 生词
    【Android】Android 学习记录贴
    【英语】Bingo口语笔记(12)
  • 原文地址:https://www.cnblogs.com/ws5167/p/3915601.html
Copyright © 2020-2023  润新知