Codeforces Beta Round #5 A. Chat Server's Outgoing Traffic 水题

A. Chat Server’s Outgoing Traffic

题目连接:

http://www.codeforces.com/contest/5/problem/A

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 l bytes 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:

+ for ‘Add’ command.
– for ‘Remove’ command.
: for ‘Send’ command.
and is a non-empty sequence of Latin letters and digits. can contain letters, digits and spaces, but can’t start or end with a space. 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

+Mike
Mike:hello
+Kate
+Dmitry
-Dmitry
Kate:hi
-Kate

Sample Output

9

Hint

题意

有一个聊天室

有三种操作:

1.+ xxx 进来一个人

2.- xxx 出去一个人

3.xxx:xxxxx xxx对着所有人说xxxxx,然后这个会对所有人发送一个长度为l的信息。

问你一共发了多长的信息。

题解:

其实根本不用管究竟是谁进来,谁出去。

反正我只关注人数嘛。

代码

#include<bits/stdc++.h>
using namespace std;
int a,b;
string s;

int main()
{
    while(getline(cin,s))
    {
        if(s[0]=='+')a++;
        else if(s[0]=='-')a--;
        else b+=a*(s.size()-s.find(':')-1);
    }
    cout<<b<<endl;
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5293467.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞