|
||||||||||
A simple brute force problem.Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 943 Accepted Submission(s): 514 Problem Description There's a company with several projects to be done. Finish a project will get you profits. However, there are some technical problems for some specific projects. To solve the problem, the manager will train his employee which may cost his budget. There may be dependencies between technical problems, for example, A requires B means you need to solve problem B before solving problem A. If A requires B and B requires A, it means that you should solve them at the same time. You can select which problems to be solved and how to solve them freely before finish your projects. Can you tell me the maximum profit? Input The first line of the input is a single integer T(<=100) which is the number of test cases. Each test case contains a line with two integer n(<=20) and m(<=50) which is the number of project to select to complete and the number of technical problem. Then a line with n integers. The i-th integer(<=1000) means the profit of complete the i-th project. Then a line with m integers. The i-th integer(<=1000) means the cost of training to solve the i-th technical problem. Then n lines. Each line contains some integers. The first integer k is the number of technical problems, followed by k integers implying the technical problems need to solve for the i-th project. After that, there are m lines with each line contains m integers. If the i-th row of the j-th column is 1, it means that you need to solve the i-th problem before solve the j-th problem. Otherwise the i-th row of the j-th column is 0. Output For each test case, please output a line which is "Case #X: Y ", X means the number of the test case and Y means the the maximum profit. Sample Input
Sample Output
Author BJTU Source | ||||||||||
|