程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVa410 - Station Balance

UVa410 - Station Balance

編輯:C++入門知識

Station Balance

The International Space Station contains many centrifuges in its labs. Each centrifuge will have some number (C) of chambers each of which can contain 0, 1, or 2 specimens. You are to write a program which assigns allS specimens to the chambers such that no chamber contains more than 2 specimens and the following expression for IMBALANCE is minimized.

displaymath38

where:

tex2html_wrap_inline40is the Chamber Mass of chamber i and is computed by summing the masses of the specimens assigned to chamber i.AMis the Average Mass of the chambers and is computed by dividing the sum of the masses of all specimens by the number of chambers (C).

Input

Input to this program will be a file with multiple sets of input. The first line of each set will contain two numbers. The first number ( tex2html_wrap_inline50 ) defines the number of chambers in the centrifuge and the second number ( tex2html_wrap_inline52 ) defines the number of specimens in the input set. The second line of input will contain S integers representing the masses of the specimens in the set. Each specimen mass will be between 1 and 1000 and will be delimited by the beginning or end of the line and/or one or more blanks.

Output

For each input set, you are to print a line specifying the set number (starting with 1) in the format "Set #X" where "X" is the set number.

The next C lines will contain the chamber number in column 1, a colon in column number 2, and then the masses of the specimens your program has assigned to that chamber starting in column 4. The masses in your output should be separated by exactly one blank.

Your program should then print ``IMBALANCE = X" on a line by itself where X is the computed imbalance of your specimen assignments printed to 5 digits of precision to the right of the decimal.

The final line of output for each set should be a blank line. (Follow the sample output format.)

Sample Input

2 3
6 3 8
3 5
51 19 27 14 33
5 9
1 2 3 5 7 11 13 17 19

Sample Output

Set #1
 0: 6 3
 1: 8
IMBALANCE = 1.00000

Set #2
 0: 51
 1: 19 27
 2: 14 33
IMBALANCE = 6.00000

Set #3
 0: 1 17
 1: 2 13
 2: 3 11
 3: 5 7
 4: 19
IMBALANCE = 11.60000

思路是貪心,先排序,如果S

#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
vector > vsp;
int c,s;
int num[20];
double chm[20];
void init(){
    vsp.clear();
    vsp.resize(c);
}
int main(){
    int T = 1;
    while(~scanf("%d%d",&c,&s)){
            init();
            double aver = 0;
            for(int i = 0; i < s; i++){
                scanf("%d",&num[i]);
                aver += num[i]*1.0;
            }
            memset(chm,0.0,sizeof chm);
            aver /= c;
            sort(num,num+s);
             int ind = 0;
            if(s <= c){
                for(; ind < s; ind++){
                    vsp[ind].push_back(num[ind]);
                    chm[ind] = num[ind]*1.0;
                }
            }else{
                int ed = s-1;
                for(; ind < 2*c-s; ind++){
                    vsp[ind].push_back(num[ed]);
                    chm[ind] = num[ed]*1.0;
                    ed--;
                }
                int sta = 0;
                while(sta < ed){
                    vsp[ind].push_back(num[sta]);
                    vsp[ind].push_back(num[ed]);
                    chm[ind] = (num[ed]+num[sta])*1.0;
                    ind++;
                    sta++;
                    ed--;
                }
            }
            double ans = 0;
            for(int i = 0; i < vsp.size(); i++){
                ans += fabs(aver-chm[i]);
            }
       //     cout<

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved