HDU 4928 Series 2

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

#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

 

转载于:https://www.cnblogs.com/Phantom01/p/3920364.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值