博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces555B
阅读量:4604 次
发布时间:2019-06-09

本文共 3761 字,大约阅读时间需要 12 分钟。

Case of Fugitive

 

Andrewid the Android is a galaxy-famous detective. He is now chasing a criminal hiding on the planet Oxa-5, the planet almost fully covered with water.

The only dry land there is an archipelago of n narrow islands located in a row. For more comfort let's represent them as non-intersecting segments on a straight line: island i has coordinates [li, ri], besides, ri < li + 1 for 1 ≤ i ≤ n - 1.

To reach the goal, Andrewid needs to place a bridge between each pair of adjacentislands. A bridge of length a can be placed between the i-th and the (i + 1)-th islads, if there are such coordinates of x and y, that li ≤ x ≤ rili + 1 ≤ y ≤ ri + 1and y - x = a.

The detective was supplied with m bridges, each bridge can be used at most once. Help him determine whether the bridges he got are enough to connect each pair of adjacent islands.

Input

The first line contains integers n (2 ≤ n ≤ 2·105) and m (1 ≤ m ≤ 2·105) — the number of islands and bridges.

Next n lines each contain two integers li and ri (1 ≤ li ≤ ri ≤ 1018) — the coordinates of the island endpoints.

The last line contains m integer numbers a1, a2, ..., am (1 ≤ ai ≤ 1018) — the lengths of the bridges that Andrewid got.

Output

If it is impossible to place a bridge between each pair of adjacent islands in the required manner, print on a single line "No" (without the quotes), otherwise print in the first line "Yes" (without the quotes), and in the second line print n - 1numbers b1, b2, ..., bn - 1, which mean that between islands i and i + 1 there must be used a bridge number bi.

If there are multiple correct answers, print any of them. Note that in this problem it is necessary to print "Yes" and "No" in correct case.

Examples

Input
4 4 1 4 7 8 9 10 12 14 4 5 3 8
Output
Yes 2 3 1
Input
2 2 11 14 17 18 2 9
Output
No
Input
2 1 1 1 1000000000000000000 1000000000000000000 999999999999999999
Output
Yes 1

Note

In the first sample test you can, for example, place the second bridge between points 3 and 8, place the third bridge between points 7 and 10 and place the first bridge between points 10 and 14.

In the second sample test the first bridge is too short and the second bridge is too long, so the solution doesn't exist.

 

sol:把桥按照长度从小到大排序,对于每两座岛之间的桥长是一个闭区间[L,R]

对于桥一个个枚举过去,如当前桥长是a,对于所有L<=a的找到R最小的那个,贪心一遍即可

#include 
using namespace std;typedef long long ll;inline ll read(){ ll s=0; bool f=0; char ch=' '; while(!isdigit(ch)) { f|=(ch=='-'); ch=getchar(); } while(isdigit(ch)) { s=(s<<3)+(s<<1)+(ch^48); ch=getchar(); } return (f)?(-s):(s);}#define R(x) x=read()inline void write(ll x){ if(x<0) { putchar('-'); x=-x; } if(x<10) { putchar(x+'0'); return; } write(x/10); putchar((x%10)+'0'); return;}#define W(x) write(x),putchar(' ')#define Wl(x) write(x),putchar('\n')const int N=200005;int n,m;ll Daol[N],Daor[N];struct Juli{ ll Down,Up,Id; inline bool operator<(const Juli &tmp)const { return Up>tmp.Up; }}Dis[N];inline bool cmp_Juli(Juli p,Juli q){ return p.Down
heap;struct Brg{ ll Len; int Id; inline bool operator<(const Brg &tmp)const { return Len
1) Dis[i-1]=(Juli){Daol[i]-Daor[i-1],Daor[i]-Daol[i-1],i-1}; } sort(Dis+1,Dis+n,cmp_Juli); for(i=1;i<=m;i++) a[i]=(Brg){read(),i}; sort(a+1,a+m+1); int Now=1,cnt=0;// for(i=1;i
=Dis[Now].Down&&a[i].Len<=Dis[Now].Up) heap.push(Dis[Now++]); if(heap.empty()) continue; Juli tmp=heap.top(); heap.pop();// printf("%d %d %d\n",tmp.Down,tmp.Up,a[i].Len); if(tmp.Up
View Code

 

转载于:https://www.cnblogs.com/gaojunonly1/p/11029161.html

你可能感兴趣的文章
洛谷P3763 [Tjoi2017]DNA 【后缀数组】
查看>>
UVa 442 Matrix Chain Multiplication(矩阵链,模拟栈)
查看>>
多种方法求解八数码问题
查看>>
spring mvc ModelAndView向前台传值
查看>>
(黑客游戏)HackTheGame1.21 过关攻略
查看>>
Transparency Tutorial with C# - Part 2
查看>>
android 文件上传
查看>>
ASCII 码表对照
查看>>
javascript的DOM操作获取元素
查看>>
Shuffle'm Up(串)
查看>>
20145219 《Java程序设计》第06周学习总结
查看>>
C# 执行bat文件并取得回显
查看>>
基于YOLO的Autonomous driving application__by 何子辰
查看>>
javascript中的继承
查看>>
iOS-如何写好一个UITableView
查看>>
如何在Objective-C中实现链式语法
查看>>
select2 下拉搜索控件
查看>>
WebAPI常见的鉴权方法,及其适用范围
查看>>
08. 删除重复&海量数据
查看>>
重新想象 Windows 8 Store Apps (71) - 其它: C# 调用 C++
查看>>