CF297B.Fish Weight

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

It is known that there are kk fish species in the polar ocean, numbered from 11 to kk . They are sorted by non-decreasing order of their weight, which is a positive number. Let the weight of the ii -th type of fish be wiw_{i} , then 0<w_{1}<=w_{2}<=...<=w_{k} holds.

Polar bears Alice and Bob each have caught some fish, and they are guessing who has the larger sum of weight of the fish he/she's caught. Given the type of the fish they've caught, determine whether it is possible that the fish caught by Alice has a strictly larger total weight than Bob's. In other words, does there exist a sequence of weights wiw_{i} (not necessary integers), such that the fish caught by Alice has a strictly larger total weight?

输入格式

The first line contains three integers n,m,kn,m,k (1<=n,m<=105,1<=k<=109)(1<=n,m<=10^{5},1<=k<=10^{9}) — the number of fish caught by Alice and Bob respectively, and the number of fish species.

The second line contains nn integers each from 1 to kk , the list of fish type caught by Alice. The third line contains mm integers each from 1 to kk , the list of fish type caught by Bob.

Note that one may have caught more than one fish for a same species.

输出格式

Output "YES" (without quotes) if it is possible, and "NO" (without quotes) otherwise.

输入输出样例

  • 输入#1

    3 3 3
    2 2 2
    1 1 3
    

    输出#1

    YES
    
  • 输入#2

    4 7 9
    5 2 7 3
    3 5 2 7 3 8 7
    

    输出#2

    NO
    

说明/提示

In the first sample, if w1=1,w2=2,w3=2.5w_{1}=1,w_{2}=2,w_{3}=2.5 , then Alice has a total of 2+2+2=62+2+2=6 weight units, while Bob only has 1+1+2.5=4.51+1+2.5=4.5 .

In the second sample, the fish that Alice caught is a subset of Bob's. Therefore, the total weight of Bob’s fish is always not less than the total weight of Alice’s fish.

首页