博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
洛谷P3389 【模板】高斯消元法
阅读量:6311 次
发布时间:2019-06-22

本文共 896 字,大约阅读时间需要 2 分钟。

 

1 //minamoto 2 #include
3 #include
4 #include
5 using namespace std; 6 #define getc() (p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++) 7 char buf[1<<21],*p1=buf,*p2=buf; 8 inline int read(){ 9 #define num ch-'0'10 char ch;bool flag=0;int res;11 while((ch=getc())>'9'||ch<'0')12 (ch=='-')&&(flag=true);13 for(res=num;(ch=getc())<='9'&&ch>='0';res=res*10+num);14 (flag)&&(res=-res);15 #undef num16 return res;17 }18 const int N=105;19 double mp[N][N],ans[N],eps=1e-7;20 int main(){21 // freopen("testdata.in","r",stdin);22 int n=read();23 for(int i=1;i<=n;++i)24 for(int j=1;j<=n+1;++j)25 mp[i][j]=read();26 for(int i=1;i<=n;++i){27 int r=i;28 for(int j=i+1;j<=n;++j)29 if(fabs(mp[r][i])

 

转载于:https://www.cnblogs.com/bztMinamoto/p/9729210.html

你可能感兴趣的文章
Python编程语言
查看>>
十四、转到 linux
查看>>
Got error 241 'Invalid schema
查看>>
ReferenceError: event is not defined
查看>>
男人要内在美,更要外在美
查看>>
为什么要跟别人比?
查看>>
app启动白屏
查看>>
Oracle 提高查询性能(基础)
查看>>
学习知识应该像织网一样去学习——“网状学习法”
查看>>
Hadoop集群完全分布式安装
查看>>
QString,char,string之间赋值
查看>>
我的友情链接
查看>>
Nginx+mysql+php-fpm负载均衡配置实例
查看>>
shell脚本操作mysql数据库 (部份参考)
查看>>
MySql之基于ssl安全连接的主从复制
查看>>
informix的逻辑日志和物理日志分析
查看>>
VMware.Workstation Linux与windows实现文件夹共享
查看>>
ARM inlinehook小结
查看>>
wordpress admin https + nginx反向代理配置
查看>>
管理/var/spool/clientmqueue/下的大文件
查看>>