uva 814 The Letter Carrier's Rounds

题目:The Letter Carrier's Rounds


题意:输入MTA以及在同一个MTA中的所有人。再输入发件人和收件人以及信息的内容,要求整理成题目所示的格式输出。


思路:模拟题,将数据读入后按顺序输出。


注意:(1)注意按顺序输出,所以不能用map只能用vector存储。

(2)注意重复的情况要。


代码:

#include<cstdio>
#include<iostream>
#include<string>
#include<vector>
#include<set>
#include<map>
using namespace std;

struct USER {
	string Before;
	string Name;
	string Adress;
	USER() {}
	USER(string x) {
		Before=x;
	}
	void spl() {
		int pos=Before.find('@');
		Name=Before.substr(0,pos);
		Adress=Before.substr(pos+1,Before.size()-pos);
	}
};

map<string,vector<string> > user;
USER sender;
vector<USER> rec;
vector<string> Data;
vector<string> mp;

void init() {
	rec.clear();
	Data.clear();
	mp.clear();
}

int main() {

	string x;
	while(cin>>x&&x[0]!='*') {
		cin>>x;
		int num;
		cin>>num;
		for(int i=0; i<num; i++) {
			string y;
			cin>>y;
			user[x].push_back(y);
		}
	}

	while(cin>>sender.Before&&sender.Before[0]!='*') {
		init();
		sender.spl();
		while(cin>>x&&x[0]!='*') {
			bool flag=true;
			for(int i=0;i<rec.size();i++){
				if(rec[i].Before==x){
					flag=false;
					break;
				}
			}
			if(flag==false) continue;
			rec.push_back(USER(x));
			rec[rec.size()-1].spl();
			flag=true;
			for(int i=0;i<mp.size();i++){
				if(mp[i]==rec[rec.size()-1].Adress){
					flag=false;
					break;
				}
			}
			if(flag==true)
				mp.push_back(rec[rec.size()-1].Adress);
		}

		string d;
		getchar();
		while(getline(cin,d)&&d[0]!='*') {
			Data.push_back(d);
		}

		for(int it=0; it<mp.size(); it++) {
			cout<<"Connection between "<<sender.Adress<<" and "<<mp[it]<<endl;
			cout<<"     HELO "<<sender.Adress<<endl;
			cout<<"     250\n";
			cout<<"     MAIL FROM:<"<<sender.Before<<">\n";
			cout<<"     250\n";
			bool F=false;
			for(int i=0; i<rec.size(); i++) {
				if(rec[i].Adress==mp[it]) {
					cout<<"     RCPT TO:<"<<rec[i].Before<<">\n";
					bool flag=false;
					for(int j=0; j<user[mp[it]].size(); j++) {
						if(user[mp[it]][j]==(rec[i].Name)) {
							F=true;
							flag=true;
							break;
						}
					}
					if(flag==false) cout<<"     550\n";
					else cout<<"     250\n";
				}
			}
			if(F==true) {
				cout<<"     DATA\n     354\n";
				for(int i=0; i<Data.size(); i++) {
					cout<<"     ";
					cout<<Data[i]<<endl;
				}
				cout<<"     .\n     250\n";
			}
			cout<<"     QUIT\n     221\n";
		}
	}

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值