码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4928 Series 2

时间:2014-08-18 21:52:32      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   ar   

有了题解以后这题就成了一个模拟题。不过写了好久才把它写对…… Sad

bubuko.com,布布扣

bubuko.com,布布扣
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
#include <functional>
#include <time.h>

using namespace std;

typedef __int64 ll;

const int INF = 1<<30;
const int MAXN = (int) 1e5+55;

ll a[MAXN];
int n;

inline int check(ll A[], int len) {
    bool INC = true, DEC = true;
    for (int i = 0; i < len-1; i++)
        if (A[i+1]>A[i]) INC = false;
        else if (A[i+1]<A[i]) DEC = false;
    return INC||DEC;
}

int solve() {
    int cur = 0;
    int l = 0, r = n-1;
    for (int i = 0; i < n; i++) {
        while (l<r && a[l]==0) l++;
        while (l<r && a[r]==0) r--;
        l = max(0, l-1);
        r = min(r+1, n-i);

        if (!check(a+l, r-l)) return i;

        for (int j = l; j < r; j++)
            a[j] = a[j+1]-a[j];
        r--;
    }
    return n;
}

int main() {
    #ifdef Phantom01
        freopen("HDU4928.txt", "r", stdin);
    #endif //Phantom01

    int T;
    scanf("%d", &T);
    while (T--) {
        scanf("%d", &n);
        for (int i = 0; i < n; i++)
            scanf("%I64d", &a[i]);
        int ans = solve();
        if (0==ans) puts("ugly series");
        else if (n==ans) puts("nice series");
        else printf("%d\n", ans-1);
    }

    return 0;
}
View Code

 

HDU 4928 Series 2,布布扣,bubuko.com

HDU 4928 Series 2

标签:style   blog   http   color   os   io   for   ar   

原文地址:http://www.cnblogs.com/Phantom01/p/3920364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!