zoukankan      html  css  js  c++  java
  • Rotate It !!(思维)

    Rotate It !!
    Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

    Description

    standard input/output  Announcement
     
    • Statements

      Dzy and Fox have a sequence A consisting of N numbers [A1...AN]. Dzy starts by taking the first number, then Fox takes the second number, then Dzy takes the third number and so on, they continue taking turns until all of the N numbers are taken. The player with the highest sum of numbers wins.

      Since Dzy is your dear friend, you decided to rotate the sequence (you may rotate it as many times as you like) in order to maximize Dzy's sum of numbers.

      Rotation is defined as removing the first element from the beginning of the sequence and adding it to the end of the sequence.

      So given the sequence A , you have to help Dzy and let him achieve the maximum possible sum.

    Input

    The first line containts a single integer T, the number of test cases.

    Then T testcases are given as follows :

    The first line of each testcase contains a single integer N (1 ≤ n ≤ 104).

    The second line of each testcase contains N space-separated integers [A1...AN],the elements of the sequence A (1 ≤ i ≤ n) ( - 109 ≤ Ai ≤ 109).

    Output

    Output T lines , The answer for each testcase which is the maximum achievable sum by Dzy if you help him.

    Sample Input

    Input
    1 5 1 5 3 2 4
    Output
    12

    Hint

    Consider all 5 rotations of the sequence:

    1 5 3 2 4 (Dzy score = 1 + 3 + 4 = 8)

    5 3 2 4 1 (Dzy score = 8)

    3 2 4 1 5 (Dzy score = 12)

    2 4 1 5 3 (Dzy score = 6)

    4 1 5 3 2 (Dzy score = 11)

    题解:一个环状数据,Dzy从第一个开始取,每隔一个取一个,取的数最大是多少,注意若数为奇数,Dzy取的数一定最多;

    想法是先找到总数,然后枚举每个位置为最后一个位置;

    见代码:

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    using namespace std;
    const int MAXN = 1e4 + 100;
    int num[MAXN];
    typedef long long LL;
    int main(){
        int T, N;
        scanf("%d", &T);
        while(T--){
            scanf("%d", &N);
            LL sum = 0, cur;
            if(N == 1){
                scanf("%lld", &cur);
                printf("%lld
    ", cur);
                continue;
            }
            for(int i = 0; i < N; i++){
                scanf("%d", num + i);
                sum += num[i];
            }
            if(N % 2 == 0){
                cur = 0;
                for(int i = 0; i < N; i+= 2)
                    cur += num[i];
                printf("%lld
    ", max(cur, sum - cur));
            }
            else{
                LL sum1 = 0, sum2 = 0, cur1 = 0, cur2 = 0;
                for(int i = 0; i < N; i++){
                    if(i % 2 == 0)
                        sum1 += num[i];
                    else
                        sum2 += num[i];
                }
                LL ans = sum1;
                for(int i = 0; i < N; i++){
                    if(i %2 == 0)
                        cur1 += num[i];
                    else
                        cur2 += num[i];
                    if(i % 2 == 0){
                        ans = max(ans, sum2 - cur2 + cur1);
                    //    printf("%lld
    ", sum2 - cur2 + cur1);
                    }
                    else{
                        ans = max(ans, sum1 - cur1 + cur2);
                    //    printf("%lld
    ", sum1 - cur1 + cur2);
                    }
                    
                }
                printf("%lld
    ", ans);
            }
        }
        return 0;
    }
  • 相关阅读:
    Android绘制文本对象FontMetrics介绍及繪製文本 (转)
    实机调试无法输出LogCat的解决办法
    android 获取 imei号码 和 获取手机型号和系统版本号(未验证)
    Android原理之动态墙纸 (转)
    wp7 中的des 加解密
    ViewPager多页面滑动切换以及动画效果 (转载)
    中央气象台的天气预报API 中国城市数据库
    SQLite日期类型
    JDK1.5及API完整中文版CHM下载地址
    myeclipse8.5注册码生成
  • 原文地址:https://www.cnblogs.com/handsomecui/p/5528825.html
Copyright © 2011-2022 走看看