10409: A mid-summer night’s dream
Time Limit: 3 secDescription
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
- #include <iostream>
- #include <algorithm>
- #include <vector>
- using namespace std;
- int main()
- {
- while(1){
- int n;
- cin >> n;
- vector<int> A(n);
- if(cin.eof()) break;
- for(int i=0;i<n;i++){
- cin >> A[i];
- }
- int left=(n–1)/2;
- int right;
- if(n%2==0) right=left+1;
- else right=left;
- sort(A.begin(),A.end());
- //for(int i=0;i<n;i++)
- //cout << A[i];
- int count=0;
- for(int i=0;i<n;i++){
- if(A[i]>=A[left] >> A[i]<=A[right])
- count++;
- }
- cout << A[left] << ” “ << count << ” “ << A[right]-A[left]+1 << endl;
- }
- return 0;
- }
pls:
程式都在cpe系統里鑒定通過了 當然可能coding style未必好 單純供大家參考
如果看不明白 欢迎留言或E-mail我 🙂