UVA 1397 - The Teacher's Side of Math(高斯消元)
UVA 1397 - The Teacher's Side of Math
题意:给定一个x=a1/m+b1/n。求原方程组
思路:因为m*n最多20,全部最高项仅仅有20。然后能够把每一个此项拆分。之后得到n种不同无理数,每一项为0。就能够设系数为变元。构造方程进行高斯消元
一開始用longlong爆了。换成分数写法也爆了,又不想改高精度。最后是机智的用了double型过的,只是用double精度问题,所以高斯消元的姿势要正确,而且最后输出要注意-0的情况
代码:
- #include <cstdio>
- #include <cstring>
- #include <cmath>
- #include <algorithm>
- using namespace std;
- typedef long long ll;
- const int N = 25;
- const double eps = 1e-9;
- ll a, m, b, n, C[N][N];
- int hash[N][N], tot;
- double A[N][N];
- void build() {
- memset(A, 0, sizeof(A));
- A[0][0] = 1;
- for (int i = 1; i <= tot; i++) {
- for (int j = 0; j <= i; j++) {
- int l = j, r = i - j;
- double tmp = C[i][l] * pow(a * 1.0, l / m) * pow(b * 1.0, r / n);
- l %= m; r %= n;
- A[hash[l][r]][i] += tmp;
- }
- }
- A[tot][tot] = 1;
- A[tot][tot + 1] = 1;
- tot++;
- }
- void getC() {
- for (int i = 0; i <= 20; i++) {
- C[i][0] = C[i][i] = 1;
- for (int j = 1; j < i; j++)
- C[i][j] = C[i - 1][j - 1] + C[i - 1][j];
- }
- }
- void gethash() {
- tot = 0;
- for (int i = 0; i < m; i++) {
- for (int j = 0; j < n; j++) {
- hash[i][j] = tot++;
- }
- }
- }
- void print(double x) {
- char s[100];
- sprintf(s, "%.0lf", x);
- if (strcmp(s, "-0") == 0) printf(" %s", s + 1);
- else printf(" %s", s);
- }
- void gauss() {
- for (int i = 0; i < tot; i++) {
- int r = i;
- for (int j = i + 1; j < tot; j++) {
- if (fabs(A[j][i]) > fabs(A[r][i]))
- r = j;
- }
- if (fabs(A[r][i]) < eps) continue;
- for (int j = i; j <= tot; j++)
- swap(A[r][j], A[i][j]);
- for (int j = 0; j < tot; j++) {
- if (i == j) continue;
- if (fabs(A[j][i]) >= eps) {
- double tmp = A[j][i] / A[i][i];
- for (int k = i; k <= tot; k++)
- A[j][k] -= tmp * A[i][k];
- }
- }
- }
- printf("1");
- for (int i = tot - 2; i >= 0; i--)
- print(A[i][tot] / A[i][i]);
- printf("\n");
- }
- int main() {
- getC();
- while (~scanf("%lld%lld%lld%lld", &a, &m, &b, &n)) {
- if (!a && !m && !b && !n) break;
- gethash();
- build();
- gauss();
- }
- return 0;
- }
UVA 1397 - The Teacher's Side of Math(高斯消元)的更多相关文章
- 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的矩阵,每一个位置上有一个灯和开关,初始矩阵表示灯的亮暗情况,假设按了这个位置的开关,将会导致周围包含自 ...
- UVA 11542 - Square(高斯消元)
UVA 11542 - Square 题目链接 题意:给定一些数字.保证这些数字质因子不会超过500,求这些数字中选出几个,乘积为全然平方数,问有几种选法 思路:对每一个数字分解成质因子后.发现假设要 ...
- uva 10808 - Rational Resistors(基尔霍夫定律+高斯消元)
题目链接:uva 10808 - Rational Resistors 题目大意:给出一个博阿含n个节点,m条导线的电阻网络,求节点a和b之间的等效电阻. 解题思路:基尔霍夫定律,不论什么一点的电流向 ...
- UVA 1564 - Widget Factory(高斯消元)
UVA 1564 - Widget Factory 题目链接 题意:n种零件, 给定m个制作时间.每段时间制作k个零件,每种零件有一个制作时间,每段时间用Mon到Sun表示,求每一个零件的制作时间.还 ...
- UVA 1358 - Generator(dp+高斯消元+KMP)
UVA 1358 - Generator option=com_onlinejudge&Itemid=8&page=show_problem&category=524& ...
- UVa 10828 Back to Kernighan-Ritchie 高斯消元+概率DP
题目来源:UVa 10828 Back to Kernighan-Ritchie 题意:从1開始 每次等概率从一个点到和他相邻的点 有向 走到不能走停止 求停止时每一个点的期望 思路:写出方程消元 方 ...
- UVA 1563 - SETI (高斯消元+逆元)
UVA 1563 - SETI option=com_onlinejudge&Itemid=8&page=show_problem&category=520&probl ...
- UVA 12849 Mother’s Jam Puzzle( 高斯消元 )
题目: http://uva.onlinejudge.org/external/128/12849.pdf #include <bits/stdc++.h> using namespace ...
随机推荐
- USB设备请求命令详解
USB设备请求命令 :bmRequestType + bRequest + wValue + wIndex + wLength 编号 值 名称 (0) 0 GET_STATUS:用来返回特定接收者 ...
- CAD参数绘制填充(网页版)
填充是CAD图纸中不可或缺的对象,在机械设计行业,常常需要将零部件剖开,以表现其内部的细节,而这些被剖开的截面会用填充来表示:在工程设计行业,一些特殊的材料或地形,也会用填充来表示. js中实现代码说 ...
- 小b重排字符串
2485 小b重排字符串 2 秒 262,144 KB 5 分 1 级题 小b有一个字符串S,现在她希望重排列S,使得S中相邻字符不同. 请你判断小b是否可能成功. 样例解释:将"aab ...
- zeng studio的项目窗口PHP Explorer
恢复zeng studio的项目窗口PHP Explorer方法: Windows>show view >PHP Explorer
- PHPExcel读取表格内容
PHPExcel读取表格 先引入类IOFactory.php require_once '../PHPExcel/IOFactory.php'; $filePath = "test.xlsx ...
- bzoj1455左偏树裸题
#include <stdio.h> bool vi[1000010]; int n,de[1000010],ls[1000010],rs[1000010],va[1000010],fa[ ...
- C51 中断 个人笔记
总架构图 IE寄存器 控制各个中断源的屏蔽与允许 TCON寄存器 各个中断源的请求标志位&有效信号的规定 中断源及其优先级 中断号写程序的时候要用 CPU处理中断三原则 1.CPU同时接收到几 ...
- pip提示Did not provide a commend
今天小编想要查看一下自己安装的pip版本,并且使用pip查看selenium版本等,结果在cmd输入pip,提示Did not provide a commend,如下所示: 在网上查询了很多方法,比 ...
- python接口测试之序列化与反序列化(四)
在python中,序列化可以理解为:把python的对象编码转换为json格式的字符串,反序列化可以理解为:把json格式 字符串解码为python数据对象.在python的标准库中,专门提供了jso ...
- BNUOJ 5629 胜利大逃亡(续)
胜利大逃亡(续) Time Limit: 2000ms Memory Limit: 32768KB This problem will be judged on HDU. Original ID: 1 ...