A15985 | Rudolf and CodeVid-23
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A new virus called "CodeVid-23" has spread among programmers. Rudolf, being a programmer, was not able to avoid it.
There are $n$ symptoms numbered from $1$ to $n$ that can appear when infected. Initially, Rudolf has some of them. He went to the pharmacy and bought $m$ medicines.
For each medicine, the number of days it needs to be taken is known, and the set of symptoms it removes. Unfortunately, medicines often have side effects. Therefore, for each medicine, the set of symptoms that appear when taking it is also known.
After reading the instructions, Rudolf realized that taking more than one medicine at a time is very unhealthy.
Rudolph wants to be healed as soon as possible. Therefore, he asks you to calculate the minimum number of days to remove all symptoms, or to say that it is impossible.
There are $n$ symptoms numbered from $1$ to $n$ that can appear when infected. Initially, Rudolf has some of them. He went to the pharmacy and bought $m$ medicines.
For each medicine, the number of days it needs to be taken is known, and the set of symptoms it removes. Unfortunately, medicines often have side effects. Therefore, for each medicine, the set of symptoms that appear when taking it is also known.
After reading the instructions, Rudolf realized that taking more than one medicine at a time is very unhealthy.
Rudolph wants to be healed as soon as possible. Therefore, he asks you to calculate the minimum number of days to remove all symptoms, or to say that it is impossible.
输入格式
The first line contains a single integer $t$ $(1 \le t \le 100)$ — the number of test cases.
Then follow the descriptions of the test cases.
The first line of each test case contains two integers $n, m$ $(1 \le n \le 10, 1 \le m \le 10^3)$ — the number of symptoms and medicines, respectively.
The second line of each test case contains a string of length $n$ consisting of the characters $0$ and $1$ — the description of Rudolf's symptoms. If the $i$ -th character of the string is $1$ , Rudolf has the $i$ -th symptom, otherwise he does not.
Then follow $3 \cdot m$ lines — the description of the medicines.
The first line of each medicine description contains an integer $d$ $(1 \le d \le 10^3)$ — the number of days the medicine needs to be taken.
The next two lines of the medicine description contain two strings of length $n$ , consisting of the characters $0$ and $1$ — the description of the symptoms it removes and the description of the side effects.
In the first of the two lines, $1$ at position $i$ means that the medicine removes the $i$ -th symptom, and $0$ otherwise.
In the second of the two lines, $1$ at position $i$ means that the $i$ -th symptom appears after taking the medicine, and $0$ otherwise.
Different medicines can have the same sets of symptoms and side effects. If a medicine relieves a certain symptom, it will not be among the side effects.
The sum of $m$ over all test cases does not exceed $10^3$ .
Then follow the descriptions of the test cases.
The first line of each test case contains two integers $n, m$ $(1 \le n \le 10, 1 \le m \le 10^3)$ — the number of symptoms and medicines, respectively.
The second line of each test case contains a string of length $n$ consisting of the characters $0$ and $1$ — the description of Rudolf's symptoms. If the $i$ -th character of the string is $1$ , Rudolf has the $i$ -th symptom, otherwise he does not.
Then follow $3 \cdot m$ lines — the description of the medicines.
The first line of each medicine description contains an integer $d$ $(1 \le d \le 10^3)$ — the number of days the medicine needs to be taken.
The next two lines of the medicine description contain two strings of length $n$ , consisting of the characters $0$ and $1$ — the description of the symptoms it removes and the description of the side effects.
In the first of the two lines, $1$ at position $i$ means that the medicine removes the $i$ -th symptom, and $0$ otherwise.
In the second of the two lines, $1$ at position $i$ means that the $i$ -th symptom appears after taking the medicine, and $0$ otherwise.
Different medicines can have the same sets of symptoms and side effects. If a medicine relieves a certain symptom, it will not be among the side effects.
The sum of $m$ over all test cases does not exceed $10^3$ .
输出格式
For each test case, output a single integer on a separate line — the minimum number of days it will take Rudolf to remove all symptoms. If this never happens, output $-1$ .
输入输出样例
输入 #1
4 5 4 10011 3 10000 00110 3 00101 00000 3 01010 00100 5 11010 00100 4 1 0000 10 1011 0100 2 2 11 2 10 01 3 01 10 2 3 11 3 01 10 3 10 00 4 10 01
输出 #1
8 0 -1 6
In the first example, we can first apply medicine number $4$ , after which the symptoms will look like "00101". After that, medicine number $2$ , then all symptoms will disappear, and the number of days will be $5 + 3 = 8$ . Another option is to apply the medicines in the order $1, 3, 2$ . In this case, all symptoms will also disappear, but the number of days will be $3 + 3 + 3 = 9$ .
In the second example, there are no symptoms initially, so the treatment will take $0$ days.
In the third example, there are no options to remove all symptoms.
In the second example, there are no symptoms initially, so the treatment will take $0$ days.
In the third example, there are no options to remove all symptoms.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted