【Link】:

【Description】



一个学校,有s门课程(1<=s <=8),里面本身已经有m个老师了,然后还想招聘n个老师;

给出这m个老师和n个来应聘的老师的信息;

(c[i]->工资,以及他们能教哪几门课程);

原本的m个老师一定要继续保留下来;

问你在这个条件下,如何选取这n个老师中的一些人;

使得每门课都至少有两个人能教,且花费的总工资最少.

【Solution】



设f[i][j]表示前i个老师(不包括原有的m个老师),能教课程的状态为j的情况下最少需要花多少工资;

这里j由16位二进制组成

其中第2x位,表示第x门课程有没有一个老师教,第2x+1位表示第x门课程有没有两个老师教.

然后枚举前i个老师,枚举当前状态j;

然后从f[i][j]转移到f[i+1][temp]和f[i+1][j]

这里temp是选了第i+1个老师后j变成的状态;

f[i+1][temp]=min(f[i+1][temp],f[i][j]+c[i+1])

f[i+1][j]=min(f[i+1][j],f[i][j])

最后输出f[n][22∗s−1]



【NumberOf WA】



0



【Reviw】



选好了状态就不难写啦.

读到行末用gets.



【Code】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define ms(x,y) memset(x,y,sizeof x)
#define Open() freopen("D:\\rush.txt","r",stdin)
#define Close() ios::sync_with_stdio(0) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int N = 100;
const int NN = 65536;
const int INF = 0x3f3f3f3f; int s,m,n,temp1,temp2,two[20];
int c[N+10],sta[N+10],f[N+10][NN+10];
char temp[40]; int main(){
//Open();
//Close();
two[0] = 1;
rep1(i,1,19)
two[i] = two[i-1]*2;
while (~scanf("%d%d%d",&s,&m,&n) && s){
rep1(i,0,N)
rep1(j,0,NN)
f[i][j] = INF;
rep1(i,1,N) sta[i] = 0;
temp1 = 0,temp2 = 0;
rep1(i,1,m){
int x;
scanf("%d",&x);
temp2+=x;
gets(temp);
int len = strlen(temp);
rep1(j,0,len-1)
if (isdigit(temp[j])){
x = temp[j]-'0';
if (temp1 & two[2*(x-1)])
temp1 |= two[2*(x-1)+1];
else
temp1 |= two[2*(x-1)];
}
}
f[0][temp1] = temp2;
rep1(i,1,n){
scanf("%d",&c[i]);
gets(temp);
int len = strlen(temp);
rep1(j,0,len-1)
if (isdigit(temp[j])){
int x;
x = temp[j]-'0';
sta[i] |= two[2*(x-1)];
}
}
rep1(i,0,n-1)
rep1(j,0,two[2*s]-1)
if (f[i][j]<INF){
int temp3 = j;
rep1(k,0,s-1){
if (two[2*k]&sta[i+1]){
if (j&two[2*k])
temp3 |= two[2*k+1];
else
temp3 |= two[2*k];
}
}
f[i+1][j] = min(f[i+1][j],f[i][j]);
f[i+1][temp3] = min(f[i+1][temp3],f[i][j] + c[i+1]);
}
printf("%d\n",f[n][two[2*s]-1]);
}
return 0;
}

【Uva 10817】Headmaster's Headache的更多相关文章

  1. UVA 10817 十一 Headmaster's Headache

    Headmaster's Headache Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Sub ...

  2. 【巧妙算法系列】【Uva 11464】 - Even Parity 偶数矩阵

    偶数矩阵(Even Parity, UVa 11464) 给你一个n×n的01矩阵(每个元素非0即1),你的任务是把尽量少的0变成1,使得每个元素的上.下.左.右的元素(如果存在的话)之和均为偶数.比 ...

  3. 【贪心+中位数】【UVa 11300】 分金币

    (解方程建模+中位数求最短累积位移) 分金币(Spreading the Wealth, UVa 11300) 圆桌旁坐着n个人,每人有一定数量的金币,金币总数能被n整除.每个人可以给他左右相邻的人一 ...

  4. 【UVa 10881】Piotr's Ants

    Piotr's Ants Porsition:Uva 10881 白书P9 中文改编题:[T^T][FJUT]第二届新生赛真S题地震了 "One thing is for certain: ...

  5. 【UVa 116】Unidirectional TSP

    [Link]:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...

  6. 【UVa 1347】Tour

    [Link]:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...

  7. 【UVA 437】The Tower of Babylon(记忆化搜索写法)

    [题目链接]:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...

  8. 【uva 1025】A Spy in the Metro

    [题目链接]:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...

  9. 【Uva 11584】Partitioning by Palindromes

    [Link]:https://cn.vjudge.net/contest/170078#problem/G [Description] 给你若干个只由小写字母组成的字符串; 问你,这个字符串,最少能由 ...

随机推荐

  1. C++ 何时使用动态分配(即使用newkeyword)?何时使用指针?

    动态分配 在你的问题里.你用了两种方式创建对象.这两种方式基本的不同在于对象的存储时间. 当运行Object myObject;这句代码时.它作为自己主动变量被创建,这意味着当对象出了作用域时也会自己 ...

  2. POJ --3045--Cow Acrobats(贪心模拟)

    Cow Acrobats Time Limit: 1000MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u Submit ...

  3. 面向对象(OOP)五大基本原则

    书单 <Object-Oriented Analysis & Design with Application>:Grady Booch, 下载地址:object-oriented- ...

  4. 8.最佳的MongoDB客户端管理工具

    转自:https://blog.csdn.net/chszs/article/details/51348248

  5. Redis的好处知识

    参考文章 http://www.cnblogs.com/wupeiqi/articles/5132791.html 使用Redis有哪些好处? () 速度快,因为数据存在内存中,类似于HashMap, ...

  6. Python语法篇:

    - 基础篇: - 介绍 - 下载安装以及PyCharm安装 - 变量 - 数据类型 - 列表,元组,字典,集合 - 函数 - 内置函数 - 生成器,迭代器,装饰器 - 面向对象: - 面向对象简介: ...

  7. nginx 代理https后,应用redirect https变成http --转

    原文地址:http://blog.sina.com.cn/s/blog_56d8ea900101hlhv.html 情况说明nginx配置https,tomcat正常http接受nginx转发.ngi ...

  8. MyBatis、JDBC、Hibernate区别

    从层次上看,JDBC是较底层的持久层操作方式,而Hibernate和MyBatis都是在JDBC的基础上进行了封装使其更加方便程序员对持久层的操作. 从功能上看, JDBC就是简单的建立数据库连接,然 ...

  9. 线程1—Runnable

    随便选择两个城市作为预选旅游目标.实现两个独立的线程分别显示10次城市名,每次显示后休眠一段随机时间(1000ms以内),哪个先显示完毕,就决定去哪个城市.分别用Runnable接口和Thread类实 ...

  10. vuejs fatherandson

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...