Restrooms

아직 제출이 없습니다시간 제한2초메모리 제한1024 MB

문제

MIPT university administration is planning to make repairs in the main corridor. Above all, they are going to repair all nn restrooms located along the corridor and numbered from 11 to nn. Initiative group of MIPT students and professors has made several requests of the following types:

  • There should be at least one women's restroom in the segment between l_ithl\_i^{th} to r_ithr\_i^{th} restroom inclusive.
  • There should be at least one men's restroom in the segment between l_ithl\_i^{th} to r_ithr\_i^{th} restroom inclusive.

You should answer if it is possible to satisfy all these requests, and, in case it is possible, output any possible arrangement.

입력

In the first line you are given three integers n,w,mn, w, m (1n1061\le n\le 10^6, 0w,m1060\le w, m \le 10^6) --- number of restrooms, number of requests for women's restroom, number of requests for men's restroom respectively.

In the next w+mw+m lines you are given descriptions of requests, first about women's restrooms, then about men's restrooms. Description of one request consists of two integers l_i,r_il\_i, r\_i (1l_ir_in1\le l\_i \le r\_i \le n).

출력

In the first line output string <<Yes>> (without quotes), if the way to satisfy all requests exists and <<No>> (without quotes), if it is impossible. If answer is yes, then output in the second line string consisting of nn zeros and ones, describing possible way of assigning restrooms to be men's (1) and women's (0).