uva 10057 - A mid-summer night's dream.

Problem C

A mid-summer night’s dream

Input: standard input

Output: standard output

 

This is year 2200AD. Science has progressed a lot in two hundred years. Two hundred years is mentioned here because this problem is being sent back to 2000AD with the help of time machine. Now it is possible to establish direct connection between man and computer CPU. People can watch other people’s dream on 3D displayer (That is the monitor today) as if they were watching a movie. One problem in this century is that people have become so dependent on computers that their analytical ability is approaching zero. Computers can now read problems and solve them automatically. But they can solve only difficult problems. There are no easy problems now. Our chief scientist is in great trouble as he has forgotten the number of his combination lock. For security reasons computers today cannot solve combination lock related problems. In a mid-summer night the scientist has a dream where he sees a lot of unsigned integer numbers flying around. He records them with the help of his computer, Then he has a clue that if the numbers are (X1, X2,   …  , Xn) he will have to find an integer number A (This A is the combination lock code) such that

             

             (|X1-A| + |X2-A| + … … + |Xn-A|) is minimum.

 

Input

Input will contain several blocks. Each block will start with a number n (0<n<=1000000) indicating how many numbers he saw in the dream. Next there will be n numbers. All the numbers will be less than 65536. The input will be terminated by end of file.

 

Output

For each set of input there will be one line of output. That line will contain the minimum possible value for A. Next it will contain how many numbers are there in the input that satisfy the property of A (The summation of absolute deviation from A is minimum). And finally you have to print how many possible different integer values are there for A (these values need not be present in the input). These numbers will be separated by single space.

 

Sample Input:

2
10
10
4
1
2
2
4

Sample Output:

10 2 1

2 2 1 

描述:

给定一组整数x1, x2,......,xn找到使S = |x1-A| + |x2-A| + ......+|xn-A|最小的A。

分析 :

可以先把整数排序,当A从负无穷大开始增大时,随着A左右整数的个数的变化,S也不断变化。当A左右整数相等时,S最小。

1.统计出每个整数出现的次数。

2.找到处于一半位置(设为h)的整数。

3.如果n是奇数或n是偶数但xh前面的数的个数加上xh的个数正好是一半时,则A只能是xh。

4.若n是偶数但xh前面的数加上xh的个数大于n的一半时,则有多个A满足条件。

代码:

#include 
   
   
    
    
#include 
    
    
using namespace std;
int main()
{
    int n;
    while(cin >> n){
        map
     
     
      
       imap;
        for(int i = 0; i < n; i++){
            int inter;
            cin >> inter;
            imap[inter]++;
        }
        map
      
      
       
       ::iterator map_it;
        int cnt = 0;
        int lim = (n+1) >> 1;
        for(map_it = imap.begin();map_it != imap.end(); map_it++){
           cnt += map_it->second;
           if(cnt >= lim)
               break;
        }
        if((n & 1) || cnt > lim){
            cout << map_it->first << " " << map_it->second
               << " " << "1" << endl;
        }
        else{
            map
       
       
         ::iterator temp = map_it; //保存当前位置 map_it++; //向前移动一个位置,指向临近的下一个位置 int k = map_it->second + temp->second; cout << temp->first << " " << k << map_it->first - temp->first - 1 + k << endl; } } return 0; } 
       
      
      
     
     
   
   


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值