洛谷P4549 裴蜀定理

这个字这么难打的么??

题目描述

给出n个数(A1…An)现求一组整数序列(X1…Xn)使得S=A1X1+…AnXn>0,且S的值最小

输入输出格式

输入格式:
第一行给出数字N,代表有N个数 下面一行给出N个数

输出格式:
S的最小值

输入输出样例

输入样例#1:
2
4059 -1782
输出样例#1:
99
说明

对于100%的数据,1 \le n \le 201≤n≤20,|x_i| \le 100000∣x
i
​ ∣≤100000


关于L_Y_T的懒癌,emmmmmm


#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <math.h>

using namespace std ;
int gcd(int a ,int b) ;
int n ,x;
int read() {
	int x = 0 ; int f = 1 ;char s = getchar() ;
	while(s > '9' || s < '0') {if(s=='-')f=-1;s=getchar();}
	while(s<='9'&&s>='0') {x=x*10+(s-'0');s=getchar();}
	return x*f ;
}
int main() {
	n = read() ;int ans=0;
	for(int i = 1 ; i <= n ; i ++){
		x = read() ;
		ans = gcd(ans,x) ;
	}
	cout << abs(ans) << endl ;
	return 0 ;
}
int gcd(int a,int b) {
	return b==0? a:gcd(b,a%b) ; 
}

真的不想多大注释emmmm

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值