代理服务器

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<string>
#include<cmath>
#include<iostream>
#include<vector>
#include<set>
using namespace std;
 
typedef long long LL;
const int N=1e5+10,mod=1e6;
const int MAX = 1e8 + 10 ;

/*贪心算法,每次在选择代理服务器时,遍历一遍代理服务器,
寻找能访问更多的服务器的代理服务器*/


void solve(int n){
	string a[1010] ;
	string b[5010] ;

	for(int i = 1 ; i <= n ; i++){
		cin >> a[i] ;
	}
	int m ;
	cin >> m ;
	for(int i =1 ; i <= m ; i++){
		cin >> b[i] ;
	}
	int count = 0 ;
	int time = 1 ; // 已经访问的服务器个数
	int max  ; //当前代理服务器最大访问个数
	int change = 0 ; //改变次数
	while(time <= m){ //访问次数不够
		max = 0 ; //置零

                //遍历代理服务器寻找最大值
		for(int i = 1 ; i <= n ; i++){
			int j = time ;
			count = 0 ;
			while(j <= m && a[i] != b[j]){
				count ++ ;
				j ++ ;
			}
			if(count  > max) max = count ;
		}
		if(max == 0){
			break ;
		}
		time += max ;
		change ++ ;
	}

        //max为0 ,没有满足条件的值,直接输出-1 ;否则输出change-1;
	if(max==0) cout<<"-1"<<endl;
	else cout << change-1 <<endl;
}


int main(){
	int n ;
	while(cin >> n){
		solve(n) ;
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值