• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            A Za, A Za, Fighting...

            堅信:勤能補拙

            PEARL 硬幣找零(動態規劃)

            問題描述及代碼:

              1 /*
              2  * Problem:
              3  * given you the coins, and the total amount of money to change, find a solution
              4  * for this change which minimize the number of coins needed.
              5  *
              6  * Example:
              7  * coins[] = {1, 5, 10, 21, 25};
              8  * money = 19;
              9  * solution[] = {10, 5, 1, 1, 1, 1};
             10  *
             11  * Points:
             12  * Dynamic Programming
             13  * Greey Algorithm here is usually uncorrect
             14  */
             15 #include<stdio.h>
             16 #include<stdlib.h>
             17 #include<string.h>
             18 #define MAX_COINS 10
             19 #define MAX_MONEY 32767
             20 #define INF 0x7FFFFFFF
             21 int coins_num, coins[MAX_COINS];
             22 int total, changes_num[MAX_MONEY], changes[MAX_MONEY];
             23 
             24 int
             25 is_continue()
             26 {
             27     char ch[2];
             28     while(1) {
             29         printf("Are you gonna continue this game(Y if yes, or N)?\n");
             30         scanf("%s", ch);
             31         if(ch[0== 'Y' || ch[0== 'y')
             32             return 1;
             33         else if(ch[0== 'N' || ch[0== 'n')
             34             return 0;
             35     }
             36 }
             37 
             38 void
             39 input()
             40 {
             41     int i;
             42     printf("Enter the number of coins: ");
             43     scanf("%d"&coins_num);
             44     printf("Enter the amount of coins(ascending order, separated by space): \n");
             45     for(i=0; i<coins_num; i++)
             46         scanf("%d", coins+i);
             47     printf("Enter the amount of money to change: ");
             48     scanf("%d"&total);
             49 }
             50 
             51 void
             52 output()
             53 {
             54     int i, tmp;
             55     printf("Solution: \n");
             56     printf("Minimum number of coins needed: %d\n", changes_num[total]);
             57     printf("Coins: \n");
             58     tmp = total;
             59     while(tmp > 0) {
             60         printf("%d ", changes[tmp]);
             61         tmp -= changes[tmp];
             62     }
             63     printf("\n");
             64 }
             65 
             66 /*
             67  * Dynamic Programming: f(m) = min (f[m-coins[i] + 1)
             68  * O(N*K), N is the number of coins, K is the total amount of money to change
             69  */
             70 void 
             71 solve()
             72 {
             73     int i, j, k, min;
             74     changes_num[0= 0;
             75     for(i=1; i<=total; i++) { /* Money: from '1' to 'total' */
             76         min = INF;
             77         k = -1;
             78         for(j=0; j<coins_num; j++) { /* Coins: ascending, and always contains '1' */
             79             if(i >= coins[j]) {
             80                 if(min > changes_num[i-coins[j]]+1) {
             81                     min = changes_num[i-coins[j]]+1;
             82                     k = j;
             83                 }
             84             } else
             85                 continue;
             86         }
             87         changes_num[i] = min;
             88         changes[i] = coins[k];
             89     }
             90 }
             91 
             92 int
             93 main(int argc, char **argv)
             94 {
             95     while(is_continue()) {
             96         input();
             97         solve();
             98         output();
             99     }
            100 }

            posted on 2010-09-29 14:18 simplyzhao 閱讀(765) 評論(0)  編輯 收藏 引用 所屬分類: C_動態規劃

            導航

            <2010年7月>
            27282930123
            45678910
            11121314151617
            18192021222324
            25262728293031
            1234567

            統計

            常用鏈接

            留言簿(1)

            隨筆分類

            隨筆檔案

            搜索

            最新評論

            閱讀排行榜

            評論排行榜

            久久精品国产99久久香蕉| 狠狠88综合久久久久综合网 | 久久婷婷久久一区二区三区| 久久99国产精品久久99| 亚洲国产成人精品91久久久| 色播久久人人爽人人爽人人片AV| 国产成人精品久久二区二区| 青青草原综合久久大伊人导航| 久久亚洲私人国产精品| 久久国产精品偷99| av无码久久久久久不卡网站| 久久亚洲2019中文字幕| 久久精品蜜芽亚洲国产AV| 国内精品伊人久久久久妇| 精品国产乱码久久久久久郑州公司| 久久精品成人一区二区三区| 午夜久久久久久禁播电影| 亚洲精品无码久久久| 青青青伊人色综合久久| 99精品国产在热久久无毒不卡 | 国产精品久久久久久久久软件| 国内精品久久久久影院优| 亚洲伊人久久成综合人影院 | av色综合久久天堂av色综合在| 久久九九亚洲精品| 99久久精品毛片免费播放| 久久久久久夜精品精品免费啦| 伊人久久五月天| 亚洲国产精品嫩草影院久久| 亚洲一区中文字幕久久| 国产精品久久99| 国产精品久久自在自线观看| 久久无码人妻一区二区三区 | 99久久久精品| 久久最新精品国产| 久久久久久综合一区中文字幕| 性欧美丰满熟妇XXXX性久久久 | 精品少妇人妻av无码久久| 亚洲狠狠婷婷综合久久蜜芽| 久久久一本精品99久久精品88| 国产精品一区二区久久精品涩爱|