A10007 | Kefa and Dishes
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
When Kefa came to the restaurant and sat at a table, the waiter immediately brought him the menu. There were $n$ dishes. Kefa knows that he needs exactly $m$ dishes. But at that, he doesn't want to order the same dish twice to taste as many dishes as possible.
Kefa knows that the $i$ -th dish gives him $a_{i}$ units of satisfaction. But some dishes do not go well together and some dishes go very well together. Kefa set to himself $k$ rules of eating food of the following type — if he eats dish $x$ exactly before dish $y$ (there should be no other dishes between $x$ and $y$ ), then his satisfaction level raises by $c$ .
Of course, our parrot wants to get some maximal possible satisfaction from going to the restaurant. Help him in this hard task!
Kefa knows that the $i$ -th dish gives him $a_{i}$ units of satisfaction. But some dishes do not go well together and some dishes go very well together. Kefa set to himself $k$ rules of eating food of the following type — if he eats dish $x$ exactly before dish $y$ (there should be no other dishes between $x$ and $y$ ), then his satisfaction level raises by $c$ .
Of course, our parrot wants to get some maximal possible satisfaction from going to the restaurant. Help him in this hard task!
输入格式
The first line of the input contains three space-separated numbers, $n$ , $m$ and $k$ ( $1<=m<=n<=18$ , $0<=k<=n*(n-1)$ ) — the number of dishes on the menu, the number of portions Kefa needs to eat to get full and the number of eating rules.
The second line contains $n$ space-separated numbers $a_{i}$ , ( $0<=a_{i}<=10^{9}$ ) — the satisfaction he gets from the $i$ -th dish.
Next $k$ lines contain the rules. The $i$ -th rule is described by the three numbers $x_{i}$ , $y_{i}$ and $c_{i}$ ( $1<=x_{i},y_{i}<=n$ , $0<=c_{i}<=10^{9}$ ). That means that if you eat dish $x_{i}$ right before dish $y_{i}$ , then the Kefa's satisfaction increases by $c_{i}$ . It is guaranteed that there are no such pairs of indexes $i$ and $j$ ( $1<=i<j<=k$ ), that $x_{i}=x_{j}$ and $y_{i}=y_{j}$ .
The second line contains $n$ space-separated numbers $a_{i}$ , ( $0<=a_{i}<=10^{9}$ ) — the satisfaction he gets from the $i$ -th dish.
Next $k$ lines contain the rules. The $i$ -th rule is described by the three numbers $x_{i}$ , $y_{i}$ and $c_{i}$ ( $1<=x_{i},y_{i}<=n$ , $0<=c_{i}<=10^{9}$ ). That means that if you eat dish $x_{i}$ right before dish $y_{i}$ , then the Kefa's satisfaction increases by $c_{i}$ . It is guaranteed that there are no such pairs of indexes $i$ and $j$ ( $1<=i<j<=k$ ), that $x_{i}=x_{j}$ and $y_{i}=y_{j}$ .
输出格式
In the single line of the output print the maximum satisfaction that Kefa can get from going to the restaurant.
输入输出样例
输入 #1
2 2 1 1 1 2 1 1
输出 #1
3
输入 #2
4 3 2 1 2 3 4 2 1 5 3 4 2
输出 #2
12
In the first sample it is best to first eat the second dish, then the first one. Then we get one unit of satisfaction for each dish and plus one more for the rule.
In the second test the fitting sequences of choice are 4 2 1 or 2 1 4. In both cases we get satisfaction 7 for dishes and also, if we fulfill rule 1, we get an additional satisfaction 5.
In the second test the fitting sequences of choice are 4 2 1 or 2 1 4. In both cases we get satisfaction 7 for dishes and also, if we fulfill rule 1, we get an additional satisfaction 5.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted