HDU1121 Complete the Sequence(差分找规律)
Posted fy1999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU1121 Complete the Sequence(差分找规律)相关的知识,希望对你有一定的参考价值。
题目大意:给你一串有规律的数,让你写出后面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(差分找规律)的主要内容,如果未能解决你的问题,请参考以下文章
HB限时领Deponia: The Complete Journey
Complete the Word CodeForces - 716B
codeforces 715B:Complete The Graph
Find the Minimum length Unsorted Subarray, sorting which makes the complete array sorted