hdu6465 高斯消元

题目链接:水题

高斯消元学习 高斯消元模板

题解:来自官方

  1 #include<bits/stdc++.h>
  2 #include<iostream>
  3 #include<algorithm>
  4 #include<cstring>
  5 #include<cstdio>
  6 #include<vector>
  7 #include<stack>
  8 #include<queue>
  9 #include<cmath>
 10 #include<map>
 11 #include<set>
 12 #define ll long long
 13 #define ls l,m,rt<<1
 14 #define rs m+1,r,rt<<1|1
 15 #define ull unsigned long long
 16 #define pb push_back
 17 #define P pair<ll,ll>
 18 #define f first
 19 #define s second
 20 using namespace std;
 21 const int N = 101;
 22 const double EPS=1e-10;
 23 int m,n;
 24 int a[N][N];
 25 int free_x[N];
 26 double x[N];
 27 double ans[10];
 28 int gcd(int a,int b){
 29     if(!b) return a; else return gcd(b,a%b);
 30 }
 31 int lcm(int a,int b){
 32     return a/gcd(a,b)*b;
 33 }
 34 int Gauss(int equ,int var){
 35     int k,max_r,col = 0,ta,tb;
 36     int LCM,temp,num = 0,free_index;
 37     for(int i=0;i<=var;i++){
 38         x[i]=0;
 39         free_x[i]=true;
 40     }
 41     for(k = 0;k < equ && col < var;k++,col++){
 42         max_r=k;
 43         for(int i=k+1;i<equ;i++){
 44             if(abs(a[i][col])>abs(a[max_r][col])) max_r=i;
 45         }
 46         if(max_r!=k){// 与第k行交换.
 47             for(int j=k;j<var+1;j++) swap(a[k][j],a[max_r][j]);
 48         }
 49         if(a[k][col]==0){// 说明该col列第k行以下全是0了,则处理当前行的下一列.
 50             free_x[num++] = col;
 51             k--;
 52             continue;
 53         }
 54         for(int i=k+1;i<equ;i++){// 枚举要删去的行.
 55             if(a[i][col]!=0){
 56                 LCM = lcm(abs(a[i][col]),abs(a[k][col]));
 57                 ta = LCM/abs(a[i][col]);
 58                 tb = LCM/abs(a[k][col]);
 59                 if(a[i][col]*a[k][col]<0)tb=-tb;//异号的情况是相加
 60                 for(int j=col;j<var+1;j++){
 61                     a[i][j] = a[i][j]*ta-a[k][j]*tb;
 62                 }
 63             }
 64         }
 65     }
 66     //无解
 67     for (int i = k; i < equ; i++){
 68         if (a[i][col] != 0) return -1;
 69     }
 70     //无穷解
 71     if (k < var){
 72         return var - k; // 自由变元有var - k个.
 73     }
 74     //唯一解
 75     for (int i = var - 1; i >= 0; i--){
 76         double temp = a[i][var];
 77         for (int j = i + 1; j < var; j++){
 78             if (a[i][j] != 0) temp -= a[i][j] * x[j];
 79         }
 80         //if (temp % a[i][i] != 0) return -2; // 说明有浮点数解,但无整数解.
 81         x[i] = 1.0*temp / a[i][i];
 82     }
 83     return 0;
 84 }
 85 struct point
 86 {
 87     int x,y;
 88 }st[10];
 89 int main()
 90 {
 91     int T;
 92     scanf("%d",&T);
 93     while(T--)
 94     {
 95         for(int i=1;i<=6;i++)
 96         {
 97             scanf("%d %d",&st[i].x,&st[i].y);
 98         }
 99         a[0][0]=st[1].x;a[0][1]=st[1].y;a[0][2]=1;a[0][3]=st[4].x;
100         a[1][0]=st[2].x;a[1][1]=st[2].y;a[1][2]=1;a[1][3]=st[5].x;
101         a[2][0]=st[3].x;a[2][1]=st[3].y;a[2][2]=1;a[2][3]=st[6].x;
102         int tmp=Gauss(3,3);
103         ans[0]=x[0];ans[1]=x[1];ans[2]=x[2];
104         a[0][0]=st[1].x;a[0][1]=st[1].y;a[0][2]=1;a[0][3]=st[4].y;
105         a[1][0]=st[2].x;a[1][1]=st[2].y;a[1][2]=1;a[1][3]=st[5].y;
106         a[2][0]=st[3].x;a[2][1]=st[3].y;a[2][2]=1;a[2][3]=st[6].y;
107         tmp=Gauss(3,3);
108         ans[3]=x[0];ans[4]=x[1];ans[5]=x[2];
109         int q;
110         scanf("%d",&q);
111         while(q--)
112         {
113             int x,y;
114             scanf("%d %d",&x,&y);
115             double tx=ans[0]*x+ans[1]*y+ans[2];
116             double ty=ans[3]*x+ans[4]*y+ans[5];
117             printf("%.2f %.2f\n",tx,ty);
118         }
119     }
120
121     return 0;
122 }

原文地址:https://www.cnblogs.com/lhclqslove/p/10572827.html

时间: 2024-11-09 02:40:20

hdu6465 高斯消元的相关文章

poj_1222_高斯消元

第一次学习使用高斯消元,将灯板化为线性方程组,进行求解. /*######################################################################### # File Name: poj_1222.cpp # Author: CaoLei # Created Time: 2015/7/20 15:48:04 ###################################################################

HDU 4870 Rating(高斯消元)

HDU 4870 Rating 题目链接 题意:一个人注册两个账号,初始rating都是0,他每次拿低分的那个号去打比赛,赢了加50分,输了扣100分,胜率为p,他会打到直到一个号有1000分为止,问比赛场次的期望 思路:f(i, j)表示i >= j,第一个号i分,第二个号j分时候,达到目标的期望,那么可以列出转移为f(i, j) = p f(i', j') + (1 - p) f(i'' + j'') + 1 f(i', j')对应的是赢了加分的状态,f(i'', j'')对应输的扣分的状态

【BZOJ 4171】 4171: Rhl的游戏 (高斯消元)

4171: Rhl的游戏 Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 74  Solved: 33[Submit][Status][Discuss] Description RHL最近迷上一个小游戏:Flip it.游戏的规则很简单,在一个N*M的格子上,有一些格子是黑色,有一些是白色 .每选择一个格子按一次,格子以及周围边相邻的格子都会翻转颜色(边相邻指至少与该格子有一条公共边的格子 ),黑变白,白变黑.RHL希望把所有格子都变成白色的.不幸

POJ 1830 开关问题 高斯消元,自由变量个数

http://poj.org/problem?id=1830 如果开关s1操作一次,则会有s1(记住自己也会变).和s1连接的开关都会做一次操作. 那么设矩阵a[i][j]表示按下了开关j,开关i会被操作一次,记得a[i][i] = 1是必须的,因为开关i操作一次,本身肯定会变化一次. 所以有n个开关,就有n条方程, 每个开关的操作次数总和是:a[i][1] + a[i][2] + ... + a[i][n] 那么sum % 2就代表它的状态,需要和(en[i] - be[i] + 2) % 2

BZOJ 3105: [cqoi2013]新Nim游戏 [高斯消元XOR 线性基]

以后我也要用传送门! 题意:一些数,选择一个权值最大的异或和不为0的集合 终于有点明白线性基是什么了...等会再整理 求一个权值最大的线性无关子集 线性无关子集满足拟阵的性质,贪心选择权值最大的,用高斯消元判断是否和已选择的线性相关 每一位记录pivot[i]为i用到的行 枚举要加入的数字的每一个二进制为1的位,如果有pivot[i]那么就异或一下(消元),否则pivot[i]=这个数并退出 如果最后异或成0了就说明线性相关... #include <iostream> #include &l

[bzoj1013][JSOI2008]球形空间产生器sphere-题解[高斯消元]

Description 有一个球形空间产生器能够在n维空间中产生一个坚硬的球体.现在,你被困在了这个n维球体中,你只知道球面上n+1个点的坐标,你需要以最快的速度确定这个n维球体的球心坐标,以便于摧毁这个球形空间产生器. Input 第一行是一个整数n(1<=N=10).接下来的n+1行,每行有n个实数,表示球面上一点的n维坐标.每一个实数精确到小数点后6位,且其绝对值都不超过20000. Output 有且只有一行,依次给出球心的n维坐标(n个实数),两个实数之间用一个空格隔开.每个实数精确到

[spoj104][Highways] (生成树计数+矩阵树定理+高斯消元)

In some countries building highways takes a lot of time... Maybe that's because there are many possiblities to construct a network of highways and engineers can't make up their minds which one to choose. Suppose we have a list of cities that can be c

UVA 10828 Back to Kernighan-Ritchie(高斯消元)

高斯消元求概率 对于非起点,期望x[i] = ∑x[j] / deg[j] #include<cstdio> #include<iostream> #include<cstdlib> #include<cstring> #include<string> #include<algorithm> #include<map> #include<queue> #include<vector> #includ

【BZOJ-1923】外星千足虫 高斯消元 + xor方程组

1923: [Sdoi2010]外星千足虫 Time Limit: 10 Sec  Memory Limit: 64 MBSubmit: 766  Solved: 485[Submit][Status][Discuss] Description Input 第一行是两个正整数 N, M. 接下来 M行,按顺序给出 Charles 这M次使用“点足机”的统计结果.每行包含一个“01”串和一个数字,用一个空格隔开.“01”串按位依次表示每只虫子是否被放入机器:如果第 i 个字符是“0”则代表编号为