Uva 11827 Maximum GCD(水题、读入杀)

题目链接:
http://acm.hust.edu.cn/vjudge/contest/70017#problem/V

题目大意:
读入一行数,求出所有数间最大的GCD值

分析:
根据GCD性质, NGCDN1GCD ,所以最大GCD一定出现于两个数间,由于只有至多100个数,100组样例, ON2 暴力,但是注意读入,一开始用字符串流一直WA,看了题解发现用C语言的字符读入就过了,玄学AC

代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <sstream>
#include <cstring>
#include <string>
#include <vector>
#include <cmath>
#include <set>
#define MOD 1000000007
using namespace std;
typedef unsigned long long ull;
typedef long long ll;


/*---------------------------head files----------------------------------*/

bool num[150000];


void fd()
{
    for (int i = 2 ; i <= 100000 ; i ++)
    {
        if (!num[i])
        {
            for (int j = 2*i ; j <= 100000 ; j += i)
                num[j] = true;
        }
    }
    num[1]=true;
    num[2]=true;
}
inline ll max(ll a , ll b)
{
    return a>b? a: b;
}

ll gcd (ll a , ll b)
{
    return b==0? a : gcd(b,a%b);
}
int arr[6666];

int main()
{
    string str;
    ios::sync_with_stdio(false);
    ll n,a;
    char buf;
    scanf("%d",&n);
    while (getchar() != '\n');
    while (n--)
    {
        int cnt=0;
        ll maxx=0;
        while ((buf = getchar()) != '\n')
            if (buf >= '0' && buf <= '9') {
                ungetc(buf,stdin);
                scanf("%d",&arr[cnt ++]);
            }
        for (int i = 0 ; i < cnt ; i ++)
        {
            for (int j = i+1; j <cnt ; j ++)
            {
                if (i!=j)
                    maxx = max(maxx, gcd(arr[i],arr[j]));
            }
        }
        cout<<maxx<<endl;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值