A - TL

Description

Valera wanted to prepare a Codesecrof round. He's already got one problem and he wants to set a time limit (TL) on it.

Valera has written n correct solutions. For each correct solution, he knows its running time (in seconds). Valera has also wrote m wrong solutions and for each wrong solution he knows its running time (in seconds).

Let's suppose that Valera will set v seconds TL in the problem. Then we can say that a solution passes the system testing if its running time is at most v seconds. We can also say that a solution passes the system testing with some "extra" time if for its running time, aseconds, an inequality 2a ≤ v holds.

As a result, Valera decided to set v seconds TL, that the following conditions are met:

  1. v is a positive integer;
  2. all correct solutions pass the system testing;
  3. at least one correct solution passes the system testing with some "extra" time;
  4. all wrong solutions do not pass the system testing;
  5. value v is minimum among all TLs, for which points 1234 hold.

Help Valera and find the most suitable TL or else state that such TL doesn't exist.

Input

The first line contains two integers nm (1 ≤ n, m ≤ 100). The second line contains n space-separated positive integers a1, a2, ..., an(1 ≤ ai ≤ 100) — the running time of each of the n correct solutions in seconds. The third line contains m space-separated positive integers b1, b2, ..., bm (1 ≤ bi ≤ 100) — the running time of each of m wrong solutions in seconds.

Output

If there is a valid TL value, print it. Otherwise, print -1.

Sample Input

Input
3 6
4 5 2
8 9 6 10 7 11
Output
5
Input
3 1
3 4 5
6
Output
-1

题意描述:

valera分别写出correct solution和wrong solution所运行的时间,要求寻找一个最小的运行时间t,t可使correct solution全部pass并且还包含至少一个数的2倍仍然小于t,而t不能使wrong solution 通过!

解题思路:

首先分对correct 和wrong的运行时间进行排序,比较correct中的最小的运行时间的2倍和最大的运行时间哪一个比较大,哪个大取哪一个,并且与最小的wrong的运行时间比较,如果大于最小wrong则输出-1,否则输出取得最大的那个!

解题细节:

注意 可以使用vector 也可使用数组,在使用vector时,别忘了每组测试数据结束后,都要对vector进行清空处理。

代码:

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdio>
using namespace std;
int main()
{
    int i,j,x;
    vector <int>v1,v2;
    int m,n,a;
    while(cin>>n>>m)
    {
        v1.clear();
        v2.clear();
        for(i=0;i<n;i++)
        {
            cin>>a;
            v1.push_back(a);
        }
        for(j=0;j<m;j++)
        {
            cin>>a;
            v2.push_back(a);
        }
        sort(v2.begin(),v2.end());
        sort(v1.begin(),v1.end());
        x=max(v1[0]*2,v1[n-1]);
        if(v2[0]<=x)
        {
            cout<<"-1"<<endl;
        }
        else cout<<x<<endl;
    }
    return 0;
}
心得:

注意理清题目思路,首先不能过于着急,应当将题目吃透,然后仔细分析,就比如本题,只需要将correct的情况的最小的2倍和最大的进行比较即可,不需要考虑其他!

理清思路很重要!!!!!!

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值