• Chat Server's Outgoing Traffic


    http://acm.hust.edu.cn/vjudge/contest/view.action?cid=93359#problem/A (456321)

    http://codeforces.com/problemset/problem/5/A

    Chat Server's Outgoing Traffic
    Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

    Description

    Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in front of his laptop and implemented a chat server that can process three types of commands:

    • Include a person to the chat ('Add' command).
    • Remove a person from the chat ('Remove' command).
    • Send a message from a person to all people, who are currently in the chat, including the one, who sends the message ('Send'command).

    Now Polycarp wants to find out the amount of outgoing traffic that the server will produce while processing a particular set of commands.

    Polycarp knows that chat server sends no traffic for 'Add' and 'Remove' commands. When 'Send' command is processed, server sends lbytes to each participant of the chat, where l is the length of the message.

    As Polycarp has no time, he is asking for your help in solving this problem.

    Input

    Input file will contain not more than 100 commands, each in its own line. No line will exceed 100 characters. Formats of the commands will be the following:

    • +<name> for 'Add' command.
    • -<name> for 'Remove' command.
    • <sender_name>:<message_text> for 'Send' command.

    <name> and <sender_name> is a non-empty sequence of Latin letters and digits. <message_text> can contain letters, digits and spaces, but can't start or end with a space. <message_text> can be an empty line.

    It is guaranteed, that input data are correct, i.e. there will be no 'Add' command if person with such a name is already in the chat, there will be no 'Remove' command if there is no person with such a name in the chat etc.

    All names are case-sensitive.

    Output

    Print a single number — answer to the problem.

    Sample Input

    Input
    +Mike
    Mike:hello
    +Kate
    +Dmitry
    -Dmitry
    Kate:hi
    -Kate
    Output
    9
    Input
    +Mike
    -Mike
    +Mike
    Mike:Hi I am here
    -Mike
    +Kate
    -Kate
    Output
    14


    #include <cstdio>
    #include <cstring>
    #include <cstdlib>
    #include <iostream>
    #include <map>
    #include <algorithm>
    using namespace std;
    
    #define N 210
    
    int main()
    {
        int k=0, sum=0;
        char s[N];
    
        while(gets(s))
        {
            if(s[0]=='+')  k++;
            else if(s[0]=='-')  k--;
            else
            {
                int i=0;
               while(s[i]!=':') i++;
    
               int len = strlen(s);
               sum += (len-i-1)*k;
            }
        }
    
        printf("%d
    ", sum);
        return 0;
    }
    View Code
    勿忘初心
  • 相关阅读:
    Python 从入门到实践
    Python 斐波那契数列
    Python 纸牌游戏
    Python hangman小游戏
    BC #49 1001 Untitled
    BC#50 1003 The mook jong
    BC #50 1001 Distribution money
    vector
    stack
    queue
  • 原文地址:https://www.cnblogs.com/YY56/p/4851926.html
Copyright © 2020-2023  润新知