CF596C.Wilbur and Points
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line of the input consists of a single integer n ( 1<=n<=100000 ) — the number of points in the set Wilbur is playing with.
Next follow n lines with points descriptions. Each line contains two integers x and y ( 0<=x,y<=100000 ), that give one point in Wilbur's set. It's guaranteed that all points are distinct. Also, it is guaranteed that if some point ( x , y ) is present in the input, then all points ( x′ , y′ ), such that 0<=x′<=x and 0<=y′<=y , are also present in the input.
The last line of the input contains n integers. The i -th of them is wi ( −100000<=wi<=100000 ) — the required special value of the point that gets number i in any aesthetically pleasing numbering.
输入格式
If there exists an aesthetically pleasant numbering of points in the set, such that s(xi,yi)=yi−xi=wi , then print "YES" on the first line of the output. Otherwise, print "NO".
If a solution exists, proceed output with n lines. On the i -th of these lines print the point of the set that gets number i . If there are multiple solutions, print any of them.
输出格式
In the first sample, point ( 2 , 0 ) gets number 3 , point ( 0 , 0 ) gets number one, point ( 1 , 0 ) gets number 2 , point ( 1 , 1 ) gets number 5 and point ( 0 , 1 ) gets number 4 . One can easily check that this numbering is aesthetically pleasing and yi−xi=wi .
In the second sample, the special values of the points in the set are 0 , −1 , and −2 while the sequence that the friend gives to Wilbur is 0 , 1 , 2 . Therefore, the answer does not exist.
输入输出样例
输入#1
5 2 0 0 0 1 0 1 1 0 1 0 -1 -2 1 0
输出#1
YES 0 0 1 0 2 0 0 1 1 1
输入#2
3 1 0 0 0 2 0 0 1 2
输出#2
NO
说明/提示
In the first sample, point ( 2 , 0 ) gets number 3 , point ( 0 , 0 ) gets number one, point ( 1 , 0 ) gets number 2 , point ( 1 , 1 ) gets number 5 and point ( 0 , 1 ) gets number 4 . One can easily check that this numbering is aesthetically pleasing and yi−xi=wi .
In the second sample, the special values of the points in the set are 0 , −1 , and −2 while the sequence that the friend gives to Wilbur is 0 , 1 , 2 . Therefore, the answer does not exist.