Codeforces 596 C Wilbur and Points【贪心】

C. Wilbur and Points

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Wilbur is playing with a set of n points on the coordinate plane. All points have non-negative integer coordinates. Moreover, if some point (x, y) belongs to the set, then all points (x', y'), such that 0 ≤ x' ≤ x and 0 ≤ y' ≤ y also belong to this set.

Now Wilbur wants to number the points in the set he has, that is assign them distinct integer numbers from 1 to n. In order to make the numbering aesthetically pleasing, Wilbur imposes the condition that if some point (x, y) gets number i, then all (x',y') from the set, such that x' ≥ x and y' ≥ y must be assigned a number not less than i. For example, for a set of four points (0, 0), (0, 1), (1, 0) and (1, 1), there are two aesthetically pleasing numberings. One is 1, 2, 3, 4 and another one is 1, 3, 2, 4.

Wilbur's friend comes along and challenges Wilbur. For any point he defines it's special value as s(x, y) = y - x. Now he gives Wilbur some w1, w2,..., wn, and asks him to find an aesthetically pleasing numbering of the points in the set, such that the point that gets number i has it's special value equal to wi, that is s(xi, yi) = yi - xi = wi.

Now Wilbur asks you to help him with this challenge.

Input

The first line of the input consists of a single integer n (1 ≤ n ≤ 100 000) — 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 ≤ 100 000), 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 ( - 100 000 ≤ wi ≤ 100 000) — the required special value of the point that gets number i in any aesthetically pleasing numbering.

Output

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.

Examples

Input

5
2 0
0 0
1 0
1 1
0 1
0 -1 -2 1 0

Output

YES
0 0
1 0
2 0
0 1
1 1

Input

3
1 0
0 0
2 0
0 1 2

Output

NO

Note

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.

 

题目大意:

给你n个点,每个点的点权w=a【i】.y-a【i】.x;让你找到一个可行序列,使得对应上给出的n个点权,而且序列要保证:如果有两点x1,y1;x2,y2;并且如果x1<=x1&&x2<=y2,那么点x1,y1必须在序列中排在x2,y2的前边才行。


思路:

1、先将点排序:
①按照点权从小到大排序
②如果点权相同,按照x从小到大排序
③如果x也相同,那么按照y从小到大排序

2、再将对应的点权排序:
①按照点权从小到大排序
②如果点权相同,按照顺序位子从小到大排序。

3、然后对应每一个位子进行判断,将每个位子上都赋值答案,然后再判断一下是否合法(并且如果x1<=x1&&x2<=y2,那么点x1,y1必须在序列中排在x2,y2的前边才行)如果合法,输出即可。


Ac代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
struct node
{
    int val,pos;
}aa[100040];
struct zuobiao
{
    int x,y,w;
}a[100040];
int cmp2(node a,node b)
{
    if(a.val!=b.val)
    return a.val<b.val;
    else return a.pos<b.pos;
}
int cmp(zuobiao a,zuobiao b)
{
   if(a.w==b.w)
   {
       if(a.x!=b.x)
       return a.x<b.x;
       else return a.y<b.y;
   }
   else return a.w<b.w;
}
int ans[100040][2];
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        for(int i=0;i<n;i++)
        {
            scanf("%d%d",&a[i].x,&a[i].y);
            a[i].w=a[i].y-a[i].x;
        }
        sort(a,a+n,cmp);
        for(int i=0;i<n;i++)
        {
            scanf("%d",&aa[i].val);
            aa[i].pos=i;
        }
        int flag=0;
        sort(aa,aa+n,cmp2);
        for(int i=0;i<n;i++)
        {
            int w=a[i].w;
            if(w==aa[i].val)
            {
                ans[aa[i].pos][0]=a[i].x;
                ans[aa[i].pos][1]=a[i].y;
            }
            else
            {
                flag=1;break;
            }
        }
        if(flag==0)
        {
            flag=0;

            for(int i=0;i<n-1;i++)
            {
                if(ans[i][0]>=ans[i+1][0]&&ans[i][1]>=ans[i+1][1])
                flag=1;
            }
            if(flag==0)
            {
                printf("YES\n");
                for(int i=0;i<n;i++)
                {
                    printf("%d %d\n",ans[i][0],ans[i][1]);
                }
            }
            else printf("NO\n");
        }
        else printf("NO\n");
    }
}







  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值