CF1110E.Magic Stones
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Grigory has n magic stones, conveniently numbered from 1 to n . The charge of the i -th stone is equal to ci .
Sometimes Grigory gets bored and selects some inner stone (that is, some stone with index i , where 2≤i≤n−1 ), and after that synchronizes it with neighboring stones. After that, the chosen stone loses its own charge, but acquires the charges from neighboring stones. In other words, its charge ci changes to ci′=ci+1+ci−1−ci .
Andrew, Grigory's friend, also has n stones with charges ti . Grigory is curious, whether there exists a sequence of zero or more synchronization operations, which transforms charges of Grigory's stones into charges of corresponding Andrew's stones, that is, changes ci into ti for all i ?
输入格式
The first line contains one integer n ( 2≤n≤105 ) — the number of magic stones.
The second line contains integers c1,c2,…,cn ( 0≤ci≤2⋅109 ) — the charges of Grigory's stones.
The second line contains integers t1,t2,…,tn ( 0≤ti≤2⋅109 ) — the charges of Andrew's stones.
输出格式
If there exists a (possibly empty) sequence of synchronization operations, which changes all charges to the required ones, print "Yes".
Otherwise, print "No".
输入输出样例
输入#1
4 7 2 4 12 7 15 10 12
输出#1
Yes
输入#2
3 4 4 4 1 2 3
输出#2
No
说明/提示
In the first example, we can perform the following synchronizations ( 1 -indexed):
- First, synchronize the third stone [7,2,4,12]→[7,2,10,12] .
- Then synchronize the second stone: [7,2,10,12]→[7,15,10,12] .
In the second example, any operation with the second stone will not change its charge.