Coconut is Captain Gangplank's favourite fruit. That is why he needs to drink coconut juice from bbb coconuts each day.
On his next trip, he would pass through NNN citis.
His trip would begin in the 111-st city and end in the NNN-th city.
The journey from the iii-th city to the (i+1)(i+1)(i+1)-th city costs DiD_iDi days.
Initially, there is no coconut on his ship. Fortunately, he could get supply of CiC_iCi coconuts from the iii-th city.
Could you tell him, whether he could drink coconut juice every day during the trip no not?
Input Format
The first line contains an integer TTT, indicating that there are TTT test cases.
For each test case the first line contains two integers NNN and bbb as described above.
The second line contains NNN integers C1,C2,⋯,CNC_1, C_2, \cdots, C_NC1,C2,⋯,CN.
The third line contains N−1N-1N−1 integers D1,D2,⋯,DN−1D_1, D_2, \cdots, D_{N-1}D1,D2,⋯,DN−1.
All integers in the input are less than 100010001000.
Output Format
For each case, output Yes if Captain Gangplank could drink coconut juice every day, and otherwise output No.
样例输入
2 4 1 3 2 1 4 1 2 3 4 2 2 4 6 8 3 2 1
样例输出
Yes No#include<stdio.h> #define M 1005 void Check(int a[],int b[],int q,int n){ int tag=a[0]; for(int i=1;i<n;i++){ tag=tag-b[i-1]*q; if(tag<0){ printf("No\n"); return ; } tag=tag+a[i]; } printf("Yes\n"); } int city[M]; int Day[M]; int main(){ int n; scanf("%d",&n); while(n){ int N,b; scanf("%d%d",&N,&b); for(int i=0;i<N;i++){ scanf("%d",city+i); } for(int j=0;j<N-1;j++){ scanf("%d",Day+j); } Check(city,Day,b,N); n--; } return 0; }