CF846E.Chemistry in Berland
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Igor is a post-graduate student of chemistry faculty in Berland State University (BerSU). He needs to conduct a complicated experiment to write his thesis, but laboratory of BerSU doesn't contain all the materials required for this experiment.
Fortunately, chemical laws allow material transformations (yes, chemistry in Berland differs from ours). But the rules of transformation are a bit strange.
Berland chemists are aware of n materials, numbered in the order they were discovered. Each material can be transformed into some other material (or vice versa). Formally, for each i (2<=i<=n) there exist two numbers xi and ki that denote a possible transformation: ki kilograms of material xi can be transformed into 1 kilogram of material i , and 1 kilogram of material i can be transformed into 1 kilogram of material xi . Chemical processing equipment in BerSU allows only such transformation that the amount of resulting material is always an integer number of kilograms.
For each i ( 1<=i<=n ) Igor knows that the experiment requires ai kilograms of material i , and the laboratory contains bi kilograms of this material. Is it possible to conduct an experiment after transforming some materials (or none)?
输入格式
The first line contains one integer number n ( 1<=n<=105 ) — the number of materials discovered by Berland chemists.
The second line contains n integer numbers b1,b2... bn ( 1<=bi<=1012 ) — supplies of BerSU laboratory.
The third line contains n integer numbers a1,a2... an ( 1<=ai<=1012 ) — the amounts required for the experiment.
Then n−1 lines follow. j -th of them contains two numbers xj+1 and kj+1 that denote transformation of (j+1) -th material ( 1<=xj+1<=j,1<=kj+1<=109 ).
输出格式
Print YES if it is possible to conduct an experiment. Otherwise print NO.
输入输出样例
输入#1
3 1 2 3 3 2 1 1 1 1 1
输出#1
YES
输入#2
3 3 2 1 1 2 3 1 1 1 2
输出#2
NO