UVA 1397 - The Teacher's Side of Math

题目链接

题意:给定一个x=a1/m+b1/n。求原方程组

思路:因为m*n最多20,全部最高项仅仅有20。然后能够把每一个此项拆分。之后得到n种不同无理数,每一项为0。就能够设系数为变元。构造方程进行高斯消元

一開始用longlong爆了。换成分数写法也爆了,又不想改高精度。最后是机智的用了double型过的,只是用double精度问题,所以高斯消元的姿势要正确,而且最后输出要注意-0的情况

代码:

  1. #include <cstdio>
  2. #include <cstring>
  3. #include <cmath>
  4. #include <algorithm>
  5. using namespace std;
  6.  
  7. typedef long long ll;
  8.  
  9. const int N = 25;
  10. const double eps = 1e-9;
  11.  
  12. ll a, m, b, n, C[N][N];
  13. int hash[N][N], tot;
  14.  
  15. double A[N][N];
  16.  
  17. void build() {
  18. memset(A, 0, sizeof(A));
  19. A[0][0] = 1;
  20. for (int i = 1; i <= tot; i++) {
  21. for (int j = 0; j <= i; j++) {
  22. int l = j, r = i - j;
  23. double tmp = C[i][l] * pow(a * 1.0, l / m) * pow(b * 1.0, r / n);
  24. l %= m; r %= n;
  25. A[hash[l][r]][i] += tmp;
  26. }
  27. }
  28. A[tot][tot] = 1;
  29. A[tot][tot + 1] = 1;
  30. tot++;
  31. }
  32.  
  33. void getC() {
  34. for (int i = 0; i <= 20; i++) {
  35. C[i][0] = C[i][i] = 1;
  36. for (int j = 1; j < i; j++)
  37. C[i][j] = C[i - 1][j - 1] + C[i - 1][j];
  38. }
  39. }
  40.  
  41. void gethash() {
  42. tot = 0;
  43. for (int i = 0; i < m; i++) {
  44. for (int j = 0; j < n; j++) {
  45. hash[i][j] = tot++;
  46. }
  47. }
  48. }
  49.  
  50. void print(double x) {
  51. char s[100];
  52. sprintf(s, "%.0lf", x);
  53. if (strcmp(s, "-0") == 0) printf(" %s", s + 1);
  54. else printf(" %s", s);
  55. }
  56.  
  57. void gauss() {
  58. for (int i = 0; i < tot; i++) {
  59. int r = i;
  60. for (int j = i + 1; j < tot; j++) {
  61. if (fabs(A[j][i]) > fabs(A[r][i]))
  62. r = j;
  63. }
  64. if (fabs(A[r][i]) < eps) continue;
  65. for (int j = i; j <= tot; j++)
  66. swap(A[r][j], A[i][j]);
  67. for (int j = 0; j < tot; j++) {
  68. if (i == j) continue;
  69. if (fabs(A[j][i]) >= eps) {
  70. double tmp = A[j][i] / A[i][i];
  71. for (int k = i; k <= tot; k++)
  72. A[j][k] -= tmp * A[i][k];
  73. }
  74. }
  75. }
  76. printf("1");
  77. for (int i = tot - 2; i >= 0; i--)
  78. print(A[i][tot] / A[i][i]);
  79. printf("\n");
  80. }
  81.  
  82. int main() {
  83. getC();
  84. while (~scanf("%lld%lld%lld%lld", &a, &m, &b, &n)) {
  85. if (!a && !m && !b && !n) break;
  86. gethash();
  87. build();
  88. gauss();
  89. }
  90. return 0;
  91. }

UVA 1397 - The Teacher&#39;s Side of Math(高斯消元)的更多相关文章

  1. UVA 10828 - Back to Kernighan-Ritchie(概率+高斯消元)

    UVA 10828 - Back to Kernighan-Ritchie 题目链接 题意:给图一个流程图,有结点的流程,每次进入下一个流程概率是均等的,有q次询问,求出每次询问结点的运行期望 思路: ...

  2. uva 1560 - Extended Lights Out(枚举 | 高斯消元)

    题目链接:uva 1560 - Extended Lights Out 题目大意:给定一个5∗6的矩阵,每一个位置上有一个灯和开关,初始矩阵表示灯的亮暗情况,假设按了这个位置的开关,将会导致周围包含自 ...

  3. UVA 11542 - Square(高斯消元)

    UVA 11542 - Square 题目链接 题意:给定一些数字.保证这些数字质因子不会超过500,求这些数字中选出几个,乘积为全然平方数,问有几种选法 思路:对每一个数字分解成质因子后.发现假设要 ...

  4. uva 10808 - Rational Resistors(基尔霍夫定律+高斯消元)

    题目链接:uva 10808 - Rational Resistors 题目大意:给出一个博阿含n个节点,m条导线的电阻网络,求节点a和b之间的等效电阻. 解题思路:基尔霍夫定律,不论什么一点的电流向 ...

  5. UVA 1564 - Widget Factory(高斯消元)

    UVA 1564 - Widget Factory 题目链接 题意:n种零件, 给定m个制作时间.每段时间制作k个零件,每种零件有一个制作时间,每段时间用Mon到Sun表示,求每一个零件的制作时间.还 ...

  6. UVA 1358 - Generator(dp+高斯消元+KMP)

    UVA 1358 - Generator option=com_onlinejudge&Itemid=8&page=show_problem&category=524& ...

  7. UVa 10828 Back to Kernighan-Ritchie 高斯消元+概率DP

    题目来源:UVa 10828 Back to Kernighan-Ritchie 题意:从1開始 每次等概率从一个点到和他相邻的点 有向 走到不能走停止 求停止时每一个点的期望 思路:写出方程消元 方 ...

  8. UVA 1563 - SETI (高斯消元+逆元)

    UVA 1563 - SETI option=com_onlinejudge&Itemid=8&page=show_problem&category=520&probl ...

  9. UVA 12849 Mother’s Jam Puzzle( 高斯消元 )

    题目: http://uva.onlinejudge.org/external/128/12849.pdf #include <bits/stdc++.h> using namespace ...

随机推荐

  1. USB设备请求命令详解

    USB设备请求命令 :bmRequestType + bRequest + wValue + wIndex + wLength 编号 值  名称 (0) 0  GET_STATUS:用来返回特定接收者 ...

  2. CAD参数绘制填充(网页版)

    填充是CAD图纸中不可或缺的对象,在机械设计行业,常常需要将零部件剖开,以表现其内部的细节,而这些被剖开的截面会用填充来表示:在工程设计行业,一些特殊的材料或地形,也会用填充来表示. js中实现代码说 ...

  3. 小b重排字符串

    2485 小b重排字符串 2 秒 262,144 KB 5 分 1 级题   小b有一个字符串S,现在她希望重排列S,使得S中相邻字符不同. 请你判断小b是否可能成功. 样例解释:将"aab ...

  4. zeng studio的项目窗口PHP Explorer

    恢复zeng studio的项目窗口PHP Explorer方法: Windows>show view >PHP Explorer

  5. PHPExcel读取表格内容

    PHPExcel读取表格 先引入类IOFactory.php require_once '../PHPExcel/IOFactory.php'; $filePath = "test.xlsx ...

  6. bzoj1455左偏树裸题

    #include <stdio.h> bool vi[1000010]; int n,de[1000010],ls[1000010],rs[1000010],va[1000010],fa[ ...

  7. C51 中断 个人笔记

    总架构图 IE寄存器 控制各个中断源的屏蔽与允许 TCON寄存器 各个中断源的请求标志位&有效信号的规定 中断源及其优先级 中断号写程序的时候要用 CPU处理中断三原则 1.CPU同时接收到几 ...

  8. pip提示Did not provide a commend

    今天小编想要查看一下自己安装的pip版本,并且使用pip查看selenium版本等,结果在cmd输入pip,提示Did not provide a commend,如下所示: 在网上查询了很多方法,比 ...

  9. python接口测试之序列化与反序列化(四)

    在python中,序列化可以理解为:把python的对象编码转换为json格式的字符串,反序列化可以理解为:把json格式 字符串解码为python数据对象.在python的标准库中,专门提供了jso ...

  10. BNUOJ 5629 胜利大逃亡(续)

    胜利大逃亡(续) Time Limit: 2000ms Memory Limit: 32768KB This problem will be judged on HDU. Original ID: 1 ...