URAL 2002. Test Task (阅读理解)

来源:互联网 发布:matlab提取矩阵一部分 编辑:程序博客网 时间:2024/05/21 10:19

2002. Test Task

Time limit: 0.5 second
Memory limit: 64 MB
It was an ordinary grim October morning. The sky was covered by heavy gray clouds. It was a little rainy. The rain drops fell on the windows with quiet bangs. Ilya was sitting at the computer and gloomy looking out of the window at the bleak scenery. Suddenly, a note caught his attention from the lower right corner of the screen. It said: “You have 1 unread email message(s)”. The boy braced himself for a bit of useless spam and opened the letter. But it turned out much more interesting...
Dear Sir,You have received this message from the “Rutnok BKS” HR department!
We have received your application for a software developer and we found your CV quite interesting. We would like to suggest a simple test task to evaluate your professional skills. Your task is to implement the register system for a forum. It must support three types of operations:
  1. “register username password”: to register a new user with name “username” and password “password”.If such user already exists in the database, the system should output the error message “fail: user already exists”. Otherwise, it should output message “success: new user added”.
  2. “login username password”: to log into the system as user “username” with password “password”. If such user does not exist, the system should output “fail: no such user”.Otherwise, if the user enters an incorrect password, the system should output “fail: incorrect password”. Otherwise, if the user is already logged in the system at that moment, it should output “fail: already logged in”. Otherwise, it should output “success: user logged in”.
  3. “logout username”: to log out of the system as user “username”. If such user does not exist, the system should output “fail: no such user”. Otherwise, if the user isn’t in the system at that moment, it should output “fail: already logged out”. Otherwise, it should output “success: user logged out”.
Use this letter as a formal description of the algorithm and follow the described format of system messages. Good luck!
Ilya stopped doing anything else and started solving the test task. You can try to solve it as well!

Input

The first line contains an integer n that is the number of operations (1 ≤n ≤ 100). Each of the next n lines contains a single query in the format given above. We can assume that “username” and “password” are non-empty strings with length of up to 30 characters. All characters in these strings have codes from 33 to 126.

Output

For each operation, print the message on a single line in the format given above.Be sure to put spaces and punctuation marks in the right places in the messages.

Sample

inputoutput
6register vasya 12345login vasya 1234login vasya 12345login anakin C-3POlogout vasyalogout vasya
success: new user addedfail: incorrect passwordsuccess: user logged infail: no such usersuccess: user logged outfail: already logged out
Problem Author: Kirill Borozdin
Problem Source: Ural Regional School Programming Contest 2013




解析:阅读理解,按照敲就完了。


AC代码:

#include <bits/stdc++.h>using namespace std;map<string, bool> m;map<string, string> p;int main(){    #ifdef sxk        freopen("in.txt", "r", stdin);        freopen("out.txt", "w", stdout);    #endif // sxk    int n;    string s, ss, pass;    while(~scanf("%d", &n)){        m.clear();        p.clear();        for(int i=0; i<n; i++){            cin>>s;            if(s == "register"){                cin>>ss>>pass;                if(m.count(ss)) puts("fail: user already exists");                else{                    puts("success: new user added");                    m[ss] = false;                    p[ss] = pass;                }            }            else if(s == "login"){                cin>>ss>>pass;                if(m.count(ss) == 0) puts("fail: no such user");                else if(p[ss] != pass) puts("fail: incorrect password");                else if(m[ss]) puts("fail: already logged in");                else{                    puts("success: user logged in");                    m[ss] = true;                }            }            else{                cin>>ss;                if(m.count(ss) == 0) puts("fail: no such user");                else if(m[ss] == false) puts("fail: already logged out");                else{                    puts("success: user logged out");                    m[ss] = false;                }            }        }    }    return 0;}






0 0
原创粉丝点击