zoukankan      html  css  js  c++  java
  • POJ-1959 Darts

    Darts
    Time Limit: 1000MS Memory Limit: 30000K
    Total Submissions: 1286 Accepted: 741
    Description

    Background
    Many nations (including Germany) have a strange tradition of throwing small arrows at round flat targets (usually, these small arrows are called darts and so is the game).
    In a darts game, the target consists of a flat circle which is divided into slices and rings. The slices are numbered from 1 to 20 and the rings are called double or treble ring (see Figure 5). The center part of the board is called the bull’s eye which is further subdivided into an inner part (the real bull’s eye) and an outer part (called the bull, see Fig. 5).

    Players take turns in throwing the darts at the board. Their score depends on the areas they hit with their darts. Hitting the 20 slice in the double ring scores 2 * 20 = 40 points. Hitting the treble ring multiplies the score by 3. The inner part of the bull’s eye counts 50, the outer part 25 points.
    Every turn consists of 3 darts being thrown at the dartboard by a player and his score is the sum of the scores of all darts which hit the dartboard in one of the numbered areas.
    Problem
    Your friends have played darts yesterday and from their match the scores are still on the blackboard in your room. From reading the scores, you would like to know, how the individual players threw their darts and where they could have hit the dartboard. You are to write a program which, given the score of a turn,reconstructs the number of possible distinct combinations of hits of the three darts on the dartboard ignoring the order in which the darts are thrown.
    As an example, consider the overall score of 3 of a player. This could have happened as follows:
    3 = 0 + 0 + 1*3 one dart hits slice 3

    3 = 0 + 0 + 3*1 one dart hits slice 1 in treble ring

    3 = 0 + 1*1 + 1*2 one dart hits slice 1 and one dart hits slice 2

    3 = 0 + 1*1 + 2*1 one dart hits slice 1 and one dart hits slice 1 in double ring

    3 = 1*1 + 1*1 + 1*1 all three darts hit slice 1

    The resulting sum of possible distinct combinations is 5.
    A more complex example is score 9:
    9 = 0 + 0 + 1*9 one dart hits slice 9

    9 = 0 + 0 + 3*3 one dart hits slice 3 in treble ring

    9 = 0 + 1*1 + 1*8 one dart hits slice 1 and one dart hits slice 8

    9 = 0 + 1*1 + 2*4 one dart hits slice 1 and one dart hits slice 4 in double ring

    9 = 0 + 3*2 + 1*3 one dart hits slice 2 in treble ring and one dart hits slice 3

    9 = 1*1 + 1*1 + 1*7 two darts hit slice 1 and one dart hits slice 7

    9 = 2*1 + 3*1 + 2*2 one dart hits slice 1 in double ring, one dart hits slice 1 in treble ring and one dart hits slice 2 in double ring

    9 = 1*3 + 1*3 + 1*3 three darts hit slice 3

    9 = 1*3 + 1*3 + 3*1 two darts hit slice 3 and one dart hits slice 1 in treble ring

    9 = 1*3 + 3*1 + 3*1 one dart hits slice 3 and two darts hit slice 1 in treble ring

    9 = 3*1 + 3*1 + 3*1 three darts hit slice 1 in treble ring

    What is the number of combinations? Write a program to find out.
    Input

    The first line contains the number of scenarios.
    For each scenario, you are give a dart score as a single positive integer on a line by itself.
    Output

    The output for every scenario begins with a line containing “Scenario #i:”, where i is the number of the scenario starting at 1. Then print the number of possible dart score combinations on a line by itself.Finish the output of every scenario with a blank line.
    Sample Input

    2
    3
    9
    Sample Output

    Scenario #1:
    5

    Scenario #2:
    41

    #include <iostream>
    #include <string.h>
    #include <algorithm>
    #include <stdlib.h>
    #include <math.h>
    
    using namespace std;
    int n;
    int a[63]={
        0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
        2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,
        3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,
        25,50
    };
    int main()
    {
        int t;
        scanf("%d",&t);
        int res;
        int cas=0;
        while(t--)
        {
            res=0;
            scanf("%d",&n);
            for(int i=0;i<63;i++)
            {
                for(int j=i;j<63;j++)
                {
                    for(int k=j;k<63;k++)
                    {
                        if(a[i]+a[j]+a[k]==n)
                        {
                                                   res++;
                        }
    
                    }
                }
            }
            printf("Scenario #%d:
    ",++cas);
            printf("%d
    
    ",res);
        }
        return 0;
    }
  • 相关阅读:
    vue axios接口封装、Promise封装、简单的axios方法封装、vue接口方法封装、vue post、get、patch、put方法封装
    vue-router 报错、:Avoided redundant navigation to current location 错误、路由重复
    微信小程序支付、小程序支付功能、小程序支付方法、微信小程序支付方法
    微信小程序热更新,小程序提示版本更新,版本迭代,强制更新,微信小程序版本迭代
    微信小程序动态修改title,动态配置title,动态配置头部,微信小程序动态配置头部
    响应式布局rem、rem方法封装、移动端响应式布局
    jquery 选项卡切换、选项卡封装、简单的jquery选项卡封装、tab切换效果
    js获取url并截取相应的字段,js解决url获取中文字段乱码问题
    微信小程序接口封装、原生接口封装、request、promise封装
    20193327《Python程序设计》实验报告三
  • 原文地址:https://www.cnblogs.com/dacc123/p/8228824.html
Copyright © 2011-2022 走看看