初級硬幣最大最小問題遞推法

來源:互聯網
上載者:User

標籤:blog   for   div   問題   log   sp   new   size   c   

static int* Min;static int* Max;void LeastCoin2(int* Value, int Len, int *d, int Goal) {for(int i = 1; i <= Goal; i++){for(int j = 0; j < Len; j++){if(i >= Value[j])             {                                   int distance = i - Value[j];int temp1 = Min[distance] + 1;  int temp2 = Max[distance] + 1;Min[i] = Min[i] < temp1 ? Min[i] : temp1;Max[i] = Max[i] > temp2 ? Max[i] : temp2;}}}}void WLeastCoin2(int* Value, int Len, int Goal)  {int* d = new int [Goal+1];if(d == NULL){    printf("malloc fail \n");}memset(d, -1, sizeof(int)*(Goal+1));d[0] = 0;printf("goal: %d\n", Goal);Min = new int [Goal+1];for(int i = 0; i < Goal+1; i++){Min[i] = 1<<10; //不能太大,防止溢出}Min[0] = 0;Max = new int [Goal+1];memset(Max, 0, sizeof(int)*(Goal+1));LeastCoin2(Value, Len, d, Goal);for(int i = 0; i <= Goal; i++){printf("%d ", Min[i]);//Min[Goal]   Min}printf("\n");for(int i = 0; i <= Goal; i++){printf("%d ", Max[i]);//Max[Goal]  Max}printf("\n");}

  

初級硬幣最大最小問題遞推法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.