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.
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 cin, cout streams or the %I64dspecifier.
Print "YES" if these fractions are equal and "NO" otherwise.
9 4 2 2 4
YES
9 4 3 2 3 1
YES
9 4 3 1 2 4
NO
In the first sample .
In the second sample .
In the third sample .
#include<algorithm>
using namespace std;
typedef long long s;//typedef 用来为复杂的声明定义简单的别名
int main()
{
s q,p,n,m,k,a;
cin>>p>>q;
cin>>n;
k=0;
while(n)
{
cin>>m;
if(q<=0||m>(p/q))//这里要先判断q是否为0,为0要跳出循环
{
k=1;
break;
}
p=p-m*q;//关键,模拟
swap(p,q);
n--;
}
if(k!=1)
{
if(q==0)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
else
cout<<"NO"<<endl;
return 0;
}