WOJ1414-URL

WHU ACM Team is working on a brand new web browser named "Whu-Super-Browser". You're in response for a 
powerful feature: recording the previous addresses. Moreover, when a string is inputted, the browser will display all the 
addresses start with it. The addresses shall be sorted by visited times, in descending order. This feature is very useful to 
users. 
Can you complete it? 

There're two kinds of operations: 
Visit [url_str] : visit a website with the URL: [url_str]. 
Display [str] : display all addresses start with [str] and sort them by visited times, in descending order. If two addresses 
have the same visited times, then sort them in the lexicographical order. 

输入格式

The input consists of multiple test cases. The first line of input contains an integer T, which is the number of test cases.

Each test case is on several lines.
The first line of each test case consists of an integer N.
Each of the following N lines consists of an operation, Visit or Display.

[Technical Specification] T is an integer, and T <= 10.
N is an integer, and 1 <= N <=100.
There's NO blank line between test cases.
[url_str] and [str] only contains lower case letters 'a' - 'z', '.', '/', ':'. The length of [url_str] and [str] is greater than 0 and won't exceed 100.

输出格式

For each test case, display addresses as required, each address on a separated line.
Add a blank line after each 'Display' operation.

样例输入

1
10
Visit http://acm.whu.edu.cn
Visit http://acm.pku.edu.cn
Visit http://acm.timus.ru
Visit http://acm.whu.edu.cn
Visit http://acm.whu.edu.cn
Visit http://acm.pku.edu.cn
Display http://acm
Visit baidu.com
Visit www.whu.edu.cn
Display b

样例输出

http://acm.whu.edu.cn
http://acm.pku.edu.cn
http://acm.timus.ru

baidu.com


#include<iostream>
#include<string>
#include<map>
#include<vector>
#include<algorithm>
using namespace std;
struct comp {
	string a;
	int b;
} val;
bool inorder(comp a,comp b) {
	if(a.b!=b.b) return a.b>b.b;
	return a.a<b.a;
}
int main() {
	int t,n;
	cin>>t;
	while(t--) {
		map<string,int> a;
		map<string,int>::iterator it;
		string c,d;
		int i;
		cin>>n;
		while(n--) {
			cin>>c>>d;
			vector<comp> e;
			if(c=="Visit") ++a[d];
			if(c=="Display") {
				for(it=a.begin(); it!=a.end(); it++) {
					if((*it).first.find(d)==0) {
						val.a=(*it).first,val.b=(*it).second;
						e.push_back(val);
					}
				}
				sort(e.begin(),e.end(),inorder);
				for(i=0; i<e.size(); i++) {
					cout<<e[i].a<<endl;
				}
				cout<<endl;
			}
		}
	}
	return 0;
}


全部评论

相关推荐

不愿透露姓名的神秘牛友
07-09 12:10
直接上图
牛客13578115...:改得一般,不值80
点赞 评论 收藏
分享
深夜书店vv:腾讯是这样的,去年很多走廊都加桌子当工区
点赞 评论 收藏
分享
屌丝逆袭咸鱼计划:心态摆好,man,晚点找早点找到最后都是为了提升自己好进正职,努力提升自己才是最关键的😤难道说现在找不到找的太晚了就炸了可以鸡鸡了吗😤早实习晚实习不都是为了以后多积累,大四学长有的秋招进的也不妨碍有的春招进,人生就这样
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-08 13:05
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务