zoukankan      html  css  js  c++  java
  • Exchange Cards(dfs)

    Exchange Cards

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    As a basketball fan, Mike is also fond of collecting basketball player cards. But as a student, he can not always get the money to buy new cards, so sometimes he will exchange with his friends for cards he likes. Of course, different cards have different value, and Mike must use cards he owns to get the new one. For example, to get a card of value 10$, he can use two 5$ cards or three 3$ cards plus one 1$ card, depending on the kinds of cards he have and the number of each kind of card. And Sometimes he will involve unfortunately in a bad condition that he has not got the exact value of the card he is looking for (fans always exchange cards for equivalent value).

    Here comes the problem, given the card value he plans to get and the cards he has, Mike wants to fix how many ways he can get it. So it's you task to write a program to figure it out.

    Input

    The problem consists of multiple test cases, terminated by EOF. There's a blank line between two inputs.

    The first line of each test case gives n, the value of the card Mike plans to get and m, the number of different kinds of cards Mike has. n will be an integer number between 1 and 1000. m will be an integer number between 1 and 10.

    The next m lines give the information of different kinds of cards Mike have. Each line contains two integers, val and num, representing the value of this kind of card, and the number of this kind of card Mike have.

    Note: different kinds of cards will have different value, each val and num will be an integer greater than zero.

    Output

    For each test case, output in one line the number of different ways Mike could exchange for the card he wants. You can be sure that the output will fall into an integer value.

    Output a blank line between two test cases.

    Sample Input

    5 2
    2 1
    3 1
    
    10 5
    10 2
    7 2
    5 3
    2 2
    1 5
    

    Sample Output

    1
    
    7
    题解:求种类数,i*card.v代表可以加上的价值;
    代码:
     1 #include<stdio.h>
     2 struct Node {
     3     int v,num;
     4 };
     5 Node card[15];
     6 int N,M,tot;
     7 void dfs(int x,int now){
     8     if(now==N){
     9         tot++;return;
    10     }if(now>N||x>=M)return;
    11     for(int i=0;i<=card[x].num;i++){
    12         dfs(x+1,now+i*card[x].v);
    13     }
    14 }
    15 int main(){int flot=0;
    16     while(~scanf("%d%d",&N,&M)){
    17         if(flot++)puts("");
    18         for(int i=0;i<M;i++)scanf("%d%d",&card[i].v,&card[i].num);
    19         tot=0;
    20         dfs(0,0);
    21         printf("%d
    ",tot);
    22     }
    23     return 0;
    24 }
  • 相关阅读:
    OpenGL红宝书:第一个渲染程序Triangles常见问题归总
    OpenGL绘制简单的参数曲线(完)——三次B样条曲线
    OpenGL绘制简单的参数曲线(二)——三次Bezier曲线
    OpenGL绘制简单的参数曲线(一)——三次Hermite曲线
    xcode:读取txt文件
    mac opengl 画一个三角形
    glVertexAttribPointer
    glEnableVertexAttribArray 使用
    macOS下基于GLFW+GLAD的OpenGL环境配置
    php 执行 shell 命令转义字符
  • 原文地址:https://www.cnblogs.com/handsomecui/p/4706273.html
Copyright © 2011-2022 走看看