Continued Fractions

A continued fraction of height n is a fraction of form . You are given two rational numbers, one is represented as  and the other one is represented as a finite fraction of height n. Check if they are equal.

Input

The first line contains two space-separated integers p, q (1 ≤ q ≤ p ≤ 1018) — the numerator and the denominator of the first fraction.

The second line contains integer n (1 ≤ n ≤ 90) — the height of the second fraction. The third line contains n space-separated integersa1, a2, ..., an (1 ≤ ai ≤ 1018) — the continued fraction.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cincout streams or the %I64dspecifier.

Output

Print "YES" if these fractions are equal and "NO" otherwise.

Sample test(s)

input

9 422 4

output

YES

input

9 432 3 1

output

YES

input

9 431 2 4

output

NO

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
long long int  A[108];
#define inff 1e-8
#define inffff 1e-15
int main()
{
	//freopen("in.txt","r",stdin);
	long long int  p,q;
	while(scanf("%lld%lld",&p,&q)==2)
	{
		int n;
		scanf("%d",&n);
		for(int i=1;i<=n;i++)
		{
			scanf("%lld",&A[i]);
		}
		bool flag = false;
		for(int i=1;i<=n;i++)
		{
			if(q == 0)
			{
				flag = true;
				break;
			}
			if(p / q < A[i])
			{
				flag = true;
				break;
			}
			p -= q*A[i];
			long long int temp = p;
			p = q;
			q = temp;
		}
		if(q==0 && !flag) printf("YES\n");
		else printf("NO\n");
	}
	return 0;
}


 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值