poj1681(高斯消元)

该博客详细分析了POJ1681这道编程题,该题涉及到高斯消元法在解决存在自由变量和可能无解的线性方程组问题,内容包括题目链接、解题思路和具体代码实现。
摘要由CSDN通过智能技术生成

题目链接:http://poj.org/problem?id=1681

题目分析:本题是有的存在自由变元的高斯消元,而且存在无解的情况,还是有一定难度的;

代码如下:

#include <set>
#include <map>
#include <stack>
#include <queue>
#include <math.h>
#include <vector>
#include <string>
#include <utility>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <functional>

using namespace std;
const int maxn=15*15+5;
int a[maxn][maxn+1],x[maxn];//
int equ,var;
int free_num,ans=100000000;
void Debug(){ //调试输出,看消元后的矩阵值,提交时,就不用了
    int i,j;
    for(i=0;i<equ;i++){
        for(j=0;j<var+1;j++)
        cout<<a[i][j]<<" ";
        cout<<endl;
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值