标签:ch int 变元 P3317 maxn double include 高斯消 define
传送门:https://www.luogu.org/problemnew/show/P3317
这道题的推导公式还是比较好理解的,但是由于这个矩阵是小数的,要注意高斯消元方法的使用;
#include <algorithm> #include <iterator> #include <iostream> #include <cstring> #include <cstdlib> #include <iomanip> #include <bitset> #include <cctype> #include <cstdio> #include <string> #include <vector> #include <stack> #include <cmath> #include <queue> #include <list> #include <map> #include <set> #include <cassert> /* ⊂_ヽ \\ Λ_Λ 来了老弟 \('ㅅ') > ⌒ヽ / へ\ / / \\ レ ノ ヽ_つ / / / /| ( (ヽ | |、\ | 丿 \ ⌒) | | ) / 'ノ ) Lノ */ using namespace std; #define lson (l , mid , rt << 1) #define rson (mid + 1 , r , rt << 1 | 1) #define debug(x) cerr << #x << " = " << x << "\n"; #define pb push_back #define pq priority_queue typedef long long ll; typedef unsigned long long ull; typedef long double ld; //typedef __int128 bll; typedef pair<ll ,ll > pll; typedef pair<int ,int > pii; typedef pair<int,pii> p3; //priority_queue<int> q;//这是一个大根堆q //priority_queue<int,vector<int>,greater<int> >q;//这是一个小根堆q #define fi first #define se second //#define endl '\n' #define boost ios::sync_with_stdio(false);cin.tie(0) #define rep(a, b, c) for(int a = (b); a <= (c); ++ a) #define max3(a,b,c) max(max(a,b), c); #define min3(a,b,c) min(min(a,b), c); const ll oo = 1ll<<17; const ll mos = 0x7FFFFFFF; //2147483647 const ll nmos = 0x80000000; //-2147483648 const int inf = 0x3f3f3f3f; const ll inff = 0x3f3f3f3f3f3f3f3f; //18 const int mod = 1e9; const double esp = 1e-8; const double PI=acos(-1.0); const double PHI=0.61803399; //黄金分割点 const double tPHI=0.38196601; template<typename T> inline T read(T&x){ x=0;int f=0;char ch=getchar(); while (ch<'0'||ch>'9') f|=(ch=='-'),ch=getchar(); while (ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar(); return x=f?-x:x; } inline void cmax(int &x,int y){if(x<y)x=y;} inline void cmax(ll &x,ll y){if(x<y)x=y;} inline void cmin(int &x,int y){if(x>y)x=y;} inline void cmin(ll &x,ll y){if(x>y)x=y;} /*-----------------------showtime----------------------*/ const int maxn = 109; double mp[maxn][maxn]; double a[maxn][maxn]; int n; double Gauss(int n){ for(int i=1; i<n; i++){ int mx = i; for(int j=i+1; j<n; j++){ if(fabs(a[mx][i]) < fabs(a[j][i])) mx = j; } swap(a[i], a[mx]); for(int j=i+1; j<n; j++){ double tmp = a[j][i]/a[i][i]; for(int k=i+1; k<n; k++) a[j][k] -= a[i][k] * tmp; } } double ans = 1; for(int i=1; i<n; i++) ans *= a[i][i]; return fabs(ans); } int main(){ scanf("%d", &n); double tmp = 1; for(int i=1; i<=n; i++) { for(int j=1; j<=n; j++) { scanf("%lf", &mp[i][j]); if(fabs(1.0 - mp[i][j]) < esp) mp[i][j] = 1.0- esp; if(i < j)tmp = tmp * (1.0-mp[i][j]); mp[i][j] = mp[i][j] / (1.0 - mp[i][j]); } } for(int i=1; i<=n; i++){ for(int j=i+1; j<=n; j++){ a[i][j] = a[j][i] = -mp[i][j]; a[i][i] += mp[i][j]; a[j][j] += mp[i][j]; } } printf("%.10f\n", Gauss(n) * tmp); return 0; }View Code
标签:ch,int,变元,P3317,maxn,double,include,高斯消,define
来源: https://www.cnblogs.com/ckxkexing/p/10503509.html
本站声明:
1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。