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

Codeforces-446C. Pride

时间:2018-02-14 17:06:17      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:clu   def   个数   class   get   .com   inf   problem   space   

传送门

 

N(1~2000)个数,每次操作可以将相邻两数的其中一个变为它们的最大公约数,求将所有数变为1所需的最少操作次数

 

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
using namespace std;
typedef long long LL;

const int maxn = 2e3 + 10;
int A[maxn];
int N;

int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
}

int main() {
    int cnt = 0;
    scanf("%d", &N);
    for (int i = 1; i <= N; i++) {
        scanf("%d", &A[i]);
        if (A[i] == 1) cnt++;
    }
    int ans = N + 1;
    for (int i = 1; i <= N; i++) {
        int a = 0;
        for (int j = i; j <= N; j++) {
            a = gcd(A[j], a);
            if (a == 1) {
                ans = min(ans, j - i + 1);
                break;
            }
        }
    }
    if (ans == N + 1) {
        puts("-1");
    } else {
        if (cnt) ans = N - cnt;
        else ans = N + ans - 2;
        printf("%d\n", ans);
    }
    return 0;
}

 

Codeforces-446C. Pride

标签:clu   def   个数   class   get   .com   inf   problem   space   

原文地址:https://www.cnblogs.com/xFANx/p/8448526.html

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