HDU1121 Complete the Sequence(差分找規律)
阿新 • • 發佈:2018-10-17
圖片 ostream using 分享 分享圖片 while nbsp color inf
題目大意:給你一串有規律的數,讓你寫出後面C個。
#include <iostream> using namespace std; const int maxn=100+5; int s,c,T; int f[maxn][maxn]; int main() { cin>>T; while(T--) { cin>>s>>c; for(int i=0;i<s;i++) { cin>>f[0][i]; } for(int i=1;i<s;i++) { for(int j=0;j<s-i;j++) { f[i][j]=f[i-1][j+1]-f[i-1][j]; } } for(int i=1;i<=c;i++) f[s-1][i]=f[s-1][0]; for(int i=s-2;i>=0;i--) {for(int j=s-i;j<s+c;j++) { f[i][j]=f[i][j-1]+f[i+1][j-1]; } } // for(int i=0;i<s;i++) // { // for(int j=0;j<s;j++) // { // cout<<f[i][j]<<" "; // } // cout<<endl;// } for(int i=0;i<c-1;i++) { cout<<f[0][s+i]<<" "; } cout<<f[0][s+c-1]<<endl; } return 0; }
HDU1121 Complete the Sequence(差分找規律)