Codeforces Round #182 (Div. 2) C

來源:互聯網
上載者:User

有點意思的題目。。。

解題的關鍵在於, 假設這個數組中負數的個數為N,非負數的個數為M ,N+M=L 。  

然後證明的是, 對於有N個負數的數組, 這N個負數可以任意選擇。  這樣題目就變成了求解這個數組進行無限次操作,所能得到最小的負數的個數.

然後bfs 直接上。

那個性質很好證明。 不說了

 

C. Yaroslav and Sequencetime limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Yaroslav has an array, consisting of (2·n - 1) integers. In a single operation Yaroslav can change the sign of exactly n elements in the array. In other words, in one operation Yaroslav can select exactly n array elements, and multiply each of them by -1.

Yaroslav is now wondering: what maximum sum of array elements can be obtained if it is allowed to perform any number of described operations?

Help Yaroslav.

Input

The first line contains an integer n (2 ≤ n ≤ 100). The second line contains (2·n - 1) integers — the array elements. The array elements do not exceed 1000 in their absolute value.

Output

In a single line print the answer to the problem — the maximum sum that Yaroslav can get.

Sample test(s)input
2
50 50 50
output
150
input
2
-1 -100 -1
output
100
Note

In the first sample you do not need to change anything. The sum of elements equals 150.

In the second sample you need to change the sign of the first two elements. Then we get the sum of the elements equal to 100.

 

#include <stdio.h>#include <algorithm>#include <string.h>#include <iostream>using namespace std;int que[10010];int g[220];int mark[220];int main(){    int n;    scanf("%d",&n);    int cnt=0;    for(int i=0;i<2*n-1;i++)    {        scanf("%d",&g[i]);        if(g[i]<0) cnt++;    }    int qf=1,qd=0;    que[0]=cnt;    mark[cnt]=1;    while(qf>qd)    {        int cur=que[qd++];        for(int i=0;i<=cur;i++)        {            int tmp=n-i;            if(i<=n && tmp<=2*n-1-cur)            {                int nwnode=cur-i+tmp;                if(mark[nwnode]==0)                {                    mark[nwnode]=1;                    que[qf++]=nwnode;                }            }        }    }    int tmp;    for(int i=0;i<=200;i++)        if(mark[i]==1)         {            tmp=i;            break;        }    int ans=0;    for(int i=0;i<2*n-1;i++)    {        if(g[i]<0)        {            g[i]*=-1;        }        ans += g[i];    }    sort(g,g+2*n-1);    int sum=0;    for(int i=0;i<tmp;i++)        sum+=g[i];    printf("%d",ans-2*sum);    return 0;}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.