CF496E.Distributing Parts
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are an assistant director in a new musical play. The play consists of n musical parts, each part must be performed by exactly one actor. After the casting the director chose m actors who can take part in the play. Your task is to assign the parts to actors. However, there are several limitations.
First, each actor has a certain voice range and there are some parts that he cannot sing. Formally, there are two integers for each actor, ci and di ( ci<=di ) — the pitch of the lowest and the highest note that the actor can sing. There also are two integers for each part — aj and bj ( aj<=bj ) — the pitch of the lowest and the highest notes that are present in the part. The i -th actor can perform the j -th part if and only if ci<=aj<=bj<=di , i.e. each note of the part is in the actor's voice range.
According to the contract, the i -th actor can perform at most ki parts. Besides, you are allowed not to give any part to some actors (then they take part in crowd scenes).
The rehearsal starts in two hours and you need to do the assignment quickly!
输入格式
The first line contains a single integer n — the number of parts in the play ( 1≤n≤105 )
Next n lines contain two space-separated integers each, aj and bj — the range of notes for the j-th part (1≤aj≤bj≤109)
The next line contains a single integer m—the number of actors (1≤m≤105)
Next m lines contain three space-separated integers each ci,di and ki,— the range of the i-th actor and the number of parts that he can perform ( 1≤ci≤di≤109,1≤ki≤109 )
输出格式
If there is an assignment that meets all the criteria aboce, print a single word "YES" (without the quotes) in the first line.
In the next line print n space-separated integers. The i -th integer should be the number of the actor who should perform the i -th part. If there are multiple correct assignments, print any of them.
If there is no correct assignment, print a single word "NO" (without the quotes).
输入输出样例
输入#1
3 1 3 2 4 3 5 2 1 4 2 2 5 1
输出#1
YES 1 1 2
输入#2
3 1 3 2 4 3 5 2 1 3 2 2 5 1
输出#2
NO