鏈接:click here
題意: 給出n,代表多項式有n+1項,要求多項式求導後每一項的系數,常數項就不用輸出。
思路:(吐槽)題意一直沒讀懂~~ORZ~~英語閱讀和理解能力要抓狂啊~~~,最後發現簡單的模擬
代碼:
#include#include #include #include #include using namespace std; const int Inf=0x3f3f3f; const int maxn=1000; const double eps=1e-6; const double pi=acos(-1.0); int n,m,i,j; int cost[maxn][maxn]; double vis[maxn]; int aa[maxn]; int main() { int n,m,i,j; cin>>n; while(n--) { cin>>m; for(i=0; i >aa[i]; //cout<