結果
問題 | No.970 数列変換マシン |
ユーザー | ate |
提出日時 | 2020-01-17 23:37:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,104 bytes |
コンパイル時間 | 2,303 ms |
コンパイル使用メモリ | 208,760 KB |
実行使用メモリ | 814,720 KB |
最終ジャッジ日時 | 2024-06-26 01:29:31 |
合計ジャッジ時間 | 5,926 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int select(vector<vector<double>> const& mat,size_t j){ size_t n = mat.size(); for(size_t i=j;i<n;++i){ if(mat[i][j]!=0)return i; } return -1; } void calc(vector<vector<double>>& mat,vector<double>& b,int base){ size_t n = mat.size(); double c = mat[base][base]; for(size_t i=base;i<n;++i){ mat[base][i] /= c; } b[base] /= c; for(size_t i=0;i<n;++i){ if(i==base)continue; double num = mat[i][base]; for(size_t j=0;j<n;++j){ mat[i][j] -= mat[base][j]*num; } b[i] -= b[base]*num; } } vector<double> solve(vector<vector<double>> mat,vector<double> b){ size_t n = mat.size(); for(size_t i=0;i<n;++i){ int base = select(mat,i); if(base==-1)continue; swap(mat[i],mat[base]); swap(b[i],b[base]); calc(mat,b,i); } return b; } signed main(){ int n; cin>>n; vector<vector<double>> mat(n,vector<double>(n,1)); for(int i=0;i<n;++i)mat[i][i]=0; vector<double> y(n); for(auto& yi:y)cin>>yi; auto res = solve(mat,y); for(auto r:res)cout<<r*(n-1)<<" ";cout<<endl; }