zoukankan      html  css  js  c++  java
  • Dice Notation(模拟)

    Dice Notation
    Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu

    Description

    ... <Saika> I want to get some water from this strange lake. I have a bottle. <Keeper> OK. <Saika> Then I want to go forward to look into the parterre. <Keeper> More details? <Saika> Err..What will happen if I let some water drip on the flowers? <Keeper> ...Err...The flowers will all become super-huge monsters and it will be very dangerous. <Keeper> Ready to fight. <Saika> WHAT THE HELL??? ...

    A tabletop role-playing game, or pen-and-paper role-playing game, or table-talk role-playing game is a form of role-playing game (RPG) in which the participants describe their characters' actions through speech. Participants determine the actions of their characters based on their characterization, and the actions will succeed or fail according to a formal system of rules and guidelines. Within the rules, players have the freedom to improvise. Their choices shape the direction and outcome of the game.

    The outcomes of some actions are determined by the rules of the game. For example, while looking around the room, a character may or may not notice an important object or secret doorway, depending on the character's powers of perception. This usually involves rolling dice, and comparing the number rolled to their character's statistics to see whether the action was successful. Typically, the higher the character's score in a particular attribute, the higher their probability of success. Combat is resolved in a similar manner, depending on the character's combat skills and physical attributes.

    From Wikipedia, by Sargoth. License: CC-by-sa 3.0.

    Dice notation (also known as dice algebra, common dice notation, RPG dice notation, and several other titles) is a system to represent different combinations of dice in role-playing games using simple algebra-like notation such as "2d6 + 12".

    In most role-playing games, dice rolls required by the system are given in the form of "NdX". N and X are variables, separated by the letter "d", which stands for dice. N is the number of dice to be rolled (usually omitted if 1), and X is the number of faces of each dice. For example, if a game would call for a roll of "d4" or "1d4", this would mean roll a 4-sided dice. While "3d6" would mean roll three six-sided dices. An X-sided dice can get an integer between 1 and X with equal probability.

    To this basic notation, an additive modifier can be appended, yielding expressions of the form of "NdX + B". Here, B is a number to be added to the sum of the rolls. We can use a minus sign ("-") to indicate subtraction. So, "1d20 - 10" would indicate a roll of a single 20-sided dice with 10 being subtracted from the result. Further more, we can use multiplication ("*") or division ("/") to do some more compilcated calculations like "(2d6 + 5) * 10 / (12 - 3d6)".

    To be specific, here is a standard BNF describes the dice notation:

    <notation> ::= <term> "+" <notation>
                |  <term> "-" <notation>
                |  <term>
    <term> ::= <factor> "*" <term>
            |  <factor> "/" <term>
            |  <factor>
    <factor> ::= "(" <notation> ")"
              |  <integer>
              |  <dice>
    <integer> ::= <digit> <integer>
               |  <digit>
    <digit> ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
    <dice> ::= <integer> "d" <integer>
            |  "d" <integer>
    

    To have a clearer result of a dice notation in a game, our poor player, Saika, decides to write a program as a dice bot. To standardize the output information, the program needs to generate a format string from user's input string. It should:

    • Expand dice notations. The <dice> field like "3d5" should be expanded to "([d5] + [d5] + [d5])". If only one dice is rolled in this field, simply replaced it with "[dX]".
    • Trim whitespaces. There should be one and only one space character existed around operators ("+" / "-" / "*" / "/"). No extra whitespaces characters (including "Tab" and "Space") are allowed in the format string.
    • End with specific content. Add " = [Result]" to the end of the format string.

    However, Saika is fighting against some indescribable monsters now. She has no time to write this program by herself. Please help her to finish it.

    Input

    There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

    There is a line contains a valid dice notation. The length of the notation won't exceed 2000.

    Output

    For each test case, output the format string.

    Sample Input

    3
    d6+1
    ((2d6)     +5)*((12*       3d6))
                  2d10 * d100
    

    Sample Output

    [d6] + 1 = [Result]
    ((([d6] + [d6])) + 5) * ((12 * ([d6] + [d6] + [d6]))) = [Result]
    ([d10] + [d10]) * [d100] = [Result]
    题解:挂了好多次。。。没想到数字可以是大数,题意很简单,就是给一个字符串,规范的表示出来,其中d的系数不是大数,但是纯数字可能是大数。。。
    代码:
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<string>
    #include<cstdlib>
    using namespace std;
    const int INF = 0x3f3f3f3f;
    const int MAXN = 2010;
    char s[MAXN];
    char x[MAXN];
    typedef long long LL;
    bool is_digit(char c){
        if(c >= '0' && c <= '9')return true;
        else return false;
    }
    bool is_ys(char c){
        if(c == '+' || c == '-' || c == '*' || c == '/' || c == '=')
            return true;
        else
            return false;
    }
    LL chenge(string num){
        LL temp = 0;
        for(int i = 0; i < num.length(); i++){
            temp = temp * 10 + num[i] - '0';
        }
        return temp;
    }
    void word(char *c, int &i){
        LL temp;
        int tp = 1;
        x[0] = '[';
        string num;
        while(is_digit(c[i]) || c[i] == ' ' || c[i] == '	'){
            if(c[i] == ' ' || c[i] == '	'){
                i++;
                continue;
            }
            num += c[i];
            i++;
        }
        if(c[i] == 'd'){
            temp = chenge(num);
            x[tp++] = 'd';
            i++;
            while(is_digit(c[i]) || c[i] == ' ' || c[i] == '	'){
                if(c[i] == ' ' || c[i] == '	'){
                i++;
                continue;
                }
                x[tp++] = c[i];
                i++;
            }
            x[tp++] = ']';
            x[tp] = '';
            if(temp == 1){
                printf("%s", x);return;
            }
            printf("(");
            while(temp--){
                printf("%s", x);
                if(temp > 0)printf(" + ");
            }
            printf(")");
        }
        else{
            cout << num;
        }
    }
    void work(){
        int len = strlen(s);
        for(int i = 0; i < len;){
            if(s[i] == ' ' || s[i] == '	'){
                i++;
                continue;
            }
            if(is_digit(s[i])){
                word(s, i);
            }
            else if(s[i] == 'd'){
                printf("[d");
                i++;
                while(isdigit(s[i]) || s[i] == ' ' || s[i] == '	'){
                    if(s[i] == ' ' || s[i] == '	'){
                    i++;
                    continue;
                    }
                    printf("%c", s[i]);
                    i++;
                }
                printf("]");
            }
            else if(is_ys(s[i])){
                printf(" %c ", s[i]);
                i++;
            }
            else{
                printf("%c", s[i]);
                i++;
            }
        }
    }
    int main(){
        int T;
        scanf("%d", &T);
        getchar();
        while(T--){
            gets(s);
            work();
            printf(" = [Result]
    ");
        }
        return 0;
    }
  • 相关阅读:
    软件测试人员的要求
    冒烟测试和回归测试的区别
    [go]struct
    [go]socket编程
    [go]gorhill/cronexpr用go实现crontab
    [go]os/exec执行shell命令
    [go]time包
    [go]etcd使用
    [go]redis基本使用
    [go]go操作mysql
  • 原文地址:https://www.cnblogs.com/handsomecui/p/5408117.html
Copyright © 2011-2022 走看看