AC Challenge

  • 30.04%
  • 1000ms
  • 128536K
 

Dlsj is competing in a contest with n (0 < n \le 20)n(0<n≤20) problems. And he knows the answer of all of these problems.

However, he can submit ii-th problem if and only if he has submitted (and passed, of course) s_isi​ problems, the p_{i, 1}pi,1​-th, p_{i, 2}pi,2​-th, ......, p_{i, s_i}pi,si​​-th problem before.(0 < p_{i, j} \le n,0 < j \le s_i,0 < i \le n)(0<pi,j​≤n,0<j≤si​,0<i≤n) After the submit of a problem, he has to wait for one minute, or cooling down time to submit another problem. As soon as the cooling down phase ended, he will submit his solution (and get "Accepted" of course) for the next problem he selected to solve or he will say that the contest is too easy and leave the arena.

"I wonder if I can leave the contest arena when the problems are too easy for me."
"No problem."
—— CCF NOI Problem set

If he submits and passes the ii-th problem on tt-th minute(or the tt-th problem he solve is problem ii), he can get t \times a_i + b_it×ai​+bi​ points. (|a_i|, |b_i| \le 10^9)(∣ai​∣,∣bi​∣≤109).

Your task is to calculate the maximum number of points he can get in the contest.

Input

The first line of input contains an integer, nn, which is the number of problems.

Then follows nn lines, the ii-th line contains s_i + 3si​+3 integers, a_i,b_i,s_i,p_1,p_2,...,p_{s_i}ai​,bi​,si​,p1​,p2​,...,psi​​as described in the description above.

Output

Output one line with one integer, the maximum number of points he can get in the contest.

Hint

In the first sample.

On the first minute, Dlsj submitted the first problem, and get 1 \times 5 + 6 = 111×5+6=11 points.

On the second minute, Dlsj submitted the second problem, and get 2 \times 4 + 5 = 132×4+5=13 points.

On the third minute, Dlsj submitted the third problem, and get 3 \times 3 + 4 = 133×3+4=13 points.

On the forth minute, Dlsj submitted the forth problem, and get 4 \times 2 + 3 = 114×2+3=11 points.

On the fifth minute, Dlsj submitted the fifth problem, and get 5 \times 1 + 2 = 75×1+2=7 points.

So he can get 11+13+13+11+7=5511+13+13+11+7=55 points in total.

In the second sample, you should note that he doesn't have to solve all the problems.

样例输入1复制

5
5 6 0
4 5 1 1
3 4 1 2
2 3 1 3
1 2 1 4

样例输出1复制

55

样例输入2复制

1
-100 0 0

样例输出2复制

0

题目来源

ACM-ICPC 2018 南京赛区网络预赛

状压dp。

#include <bits/stdc++.h>
#define MAX 21
typedef long long ll;
using namespace std;
const int INF = 0x3f3f3f3f; ll a[MAX],b[MAX];
ll dp[<<];
vector<int> v[MAX]; int main(void)
{
int n,num,temp,i,j,k;
scanf("%d",&n);
for(i=;i<=n;i++) {
scanf("%lld %lld",&a[i],&b[i]);
scanf("%d",&num);
while(num--) {
scanf("%d",&temp);
v[i].push_back(temp);
}
}
memset(dp,,sizeof(dp));
for(i=;i<(<<n);i++){
int f=;
for(j=;j<=n;j++){
if(!((<<(j-))&i)) continue;
for(k=;k<v[j].size();k++){
if(!((<<(v[j][k]-))&i)){
f=;
break;
}
}
if(f==) break;
}
if(f==) continue;
for(j=;j<=n;j++){
if(!((<<(j-))&i)) continue;
int S=i;
int c=;
while(S){
if(S&) c++;
S>>=;
}
dp[i]=max(dp[i],dp[i^(<<(j-))]+c*a[j]+b[j]);
//printf("(%d %d %d %lld)",i,c,j,dp[i]);
}
}
printf("%lld\n",dp[(<<n)-]);
return ;
}

最新文章

  1. form 表单基础知识
  2. django一些操作命令
  3. awk系列:在awk中如何使用流程控制语句
  4. 把svn上的mycelipse导到本地的eclipse中
  5. [uwp开发]数据绑定那些事(1)
  6. 利用 NGINX 最大化 Python 性能,第一部分:Web 服务和缓存
  7. Chrome插件开发 尝试1
  8. UVA 11737 Extreme Primitive Society
  9. CodeForces 352D. Jeff and Furik
  10. hdu2817 A sequence of numbers
  11. EBS基础—表的后缀
  12. iOS_init相关信息
  13. 隐式的处理SOAPHeader消息
  14. Docker的使用初探(一):常用指令说明
  15. 循环语句(for,while,do……while),方法概述
  16. spring事务相关
  17. [EXP]IIS全版本提权工具
  18. 【机器学习_7】numpy
  19. Jquery自定义动画与动画队列
  20. git 拉取和获取 pull 和 fetch 区别

热门文章

  1. 九度OJ 1015:还是A+B (基础题)
  2. MySql 三大知识点——索引、锁、事务(转)
  3. 1000个圆点与PaintDC的使用,OnSize时重画很棒
  4. 《Linux 鸟哥私房菜》 第一部分 Linux文件、目录与磁盘格式
  5. main方法的参数
  6. ubuntu 14.04 用 shell 方便安装nginx
  7. 简易html5贪吃蛇
  8. nginx使用ssl模块配置HTTPS支持 &lt;转&gt;
  9. ***静态成员的定义及初始化 for c++ for新用法
  10. python2.7 爬虫初体验爬取新浪国内新闻_20161130