UVA 1564 - Widget Factory(高斯消元)
UVA 1564 - Widget Factory
题意:n种零件, 给定m个制作时间。每段时间制作k个零件,每种零件有一个制作时间,每段时间用Mon到Sun表示,求每一个零件的制作时间。还要推断一下多解和无解的情况
思路:对于每段时间列出一个方程,这样一共列出m个方程解n个变元,利用高斯消元去求解。注意每一个方程都是MOD 7的,所以在高斯消元过程中遇到除法要求该数字%7的逆元去进行运算
代码:
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std; const int N = 305;
char week[7][5] = {"MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"}; int n, m, k, A[N][N], cnt[N];
char day1[5], day2[5]; int find(char *day) {
for (int i = 0; i < 7; i++)
if (strcmp(week[i], day) == 0)
return i;
} int inv(int x) {
int ans = 1;
for (int i = 0; i < 5; i++)
ans = ans * x % 7;
return ans;
} void build() {
for (int i = 0; i < m; i++) {
scanf("%d%s%s", &k, day1, day2);
A[i][n] = (find(day2) - find(day1) + 8) % 7;
int tmp;
memset(cnt, 0, sizeof(cnt));
while (k--) {
scanf("%d", &tmp);
cnt[tmp]++;
}
for (int j = 1; j <= n; j++)
A[i][j - 1] = cnt[j] % 7;
}
} int gauss() {
int i = 0, j = 0;
while (i < m && j < n) {
int r;
for (r = i; r < m; r++)
if (A[r][j]) break;
if (r == m) {
j++;
continue;
}
for (int k = j; k <= n; k++) swap(A[r][k], A[i][k]);
for (int k = 0; k < m; k++) {
if (i == k) continue;
if (A[k][j]) {
int tmp = A[k][j] * inv(A[i][j]) % 7;
for (int x = j; x <= n; x++)
A[k][x] = ((A[k][x] - tmp * A[i][x]) % 7 + 7) % 7;
}
}
i++;
}
for (int k = i; k < m; k++)
if (A[k][n]) return 2;
if (i < n) return 1;
for (int i = 0; i < n; i++) {
int ans = A[i][n] * inv(A[i][i]) % 7;
if (ans < 3) ans += 7;
printf("%d%c", ans, i == n - 1 ? '\n' : ' ');
}
return 0;
} void solve() {
int tmp = gauss();
if (tmp == 1) printf("Multiple solutions.\n");
else if (tmp == 2) printf("Inconsistent data.\n");
} int main() {
while (~scanf("%d%d", &n, &m) && n) {
build();
solve();
}
return 0;
}
UVA 1564 - Widget Factory(高斯消元)的更多相关文章
- POJ 2947 2947 Widget Factory 高斯消元
给出组件的数量n,给出记录的数量m(n就是变元数量,m是方程数量).每一个记录代表一个方程,求每个组件的生产天数. 高斯消元即可 #include <cstdio> #include &l ...
- Poj 2947 widget factory (高斯消元解同模方程)
题目连接: http://poj.org/problem?id=2947 题目大意: 有n种类型的零件,m个工人,每个零件的加工时间是[3,9],每个工人在一个特定的时间段内可以生产k个零件(可以相同 ...
- POJ2947Widget Factory(高斯消元解同模方程)
http://poj.org/problem?id=2947 题目大意:有n 种装饰物,m 个已知条件,每个已知条件的描述如下:p start enda1,a2......ap (1<=ai&l ...
- POJ 2947-Widget Factory(高斯消元解同余方程式)
题目地址:id=2947">POJ 2947 题意:N种物品.M条记录,接写来M行,每行有K.Start,End,表述从星期Start到星期End,做了K件物品.接下来的K个数为物品的 ...
- UVA 1358 - Generator(dp+高斯消元+KMP)
UVA 1358 - Generator option=com_onlinejudge&Itemid=8&page=show_problem&category=524& ...
- POJ 2947 Widget Factory(高斯消元)
Description The widget factory produces several different kinds of widgets. Each widget is carefully ...
- 【POJ】2947 Widget Factory(高斯消元)
http://poj.org/problem?id=2947 各种逗啊..还好1a了.. 题意我就不说了,百度一大把. 转换为mod的方程组,即 (x[1,1]*a[1])+(x[1,2]*a[2]) ...
- UVA 10828 - Back to Kernighan-Ritchie(概率+高斯消元)
UVA 10828 - Back to Kernighan-Ritchie 题目链接 题意:给图一个流程图,有结点的流程,每次进入下一个流程概率是均等的,有q次询问,求出每次询问结点的运行期望 思路: ...
- uva 1560 - Extended Lights Out(枚举 | 高斯消元)
题目链接:uva 1560 - Extended Lights Out 题目大意:给定一个5∗6的矩阵,每一个位置上有一个灯和开关,初始矩阵表示灯的亮暗情况,假设按了这个位置的开关,将会导致周围包含自 ...
随机推荐
- 分组的listview——ExpandableListView
开发使用到的数据统计时可以用分组的ExpandablelistView 效果:
- alert警告框
标签中写: <div class="alert alert-warning fade in"> <button class="close" d ...
- Fedora 13 Alpha测试手记横空出世
本文转载在:http://www.linux521.com/2009/system/201004/10719.html 本文是继<Fedora 11-Alpha试用手记>文章(http ...
- Maven用法
Maven 的使用教程 1.什么是 Maven? Maven项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具. 2.下载 Maven? ①.官网下载 ...
- CISP/CISA 每日一题 17
CISSP 每日一题(答) What are often added to passwords to maketheir resultant hash secure and resistant to ...
- [Vue + TS] Create Type-Safe Vue Directives in TypeScript
Directives allow us to apply DOM manipulations as side effects. We’ll show you how you can create yo ...
- zico源代码分析(二) 数据读取和解析部分
第一部分:分析篇 首先,看一下zico的页面,左侧是hostname panel,右侧是该主机对应的traces panel. 点击左侧zorka主机名,右侧panel会更新信息,在火狐浏览器中使用f ...
- Linux设备空间存储满问题
问题 linux创建文件夹文件.补全,启动服务均报错,具体报错信息如下 [root@localhost log]# mkdir /log/mysql -p mkdir: 无法创建目录"/lo ...
- scrapy-加蘑菇代理
加代理ip 隧道代理 setting中 解开 下载器
- 推荐一款优雅高效的免费在线APP原型工具
有段时间没有推荐干货给大伙了,今天是时候把压箱底的东西拿出来分享给大家了! 想要学习原型图绘制的小伙伴可以看过来,适合零基础的小白,五分钟就可以上手,绘制自己想要的产品原型图. 官方介绍:用户只需输入 ...