Codeforces 572 A. Arrays

简介:

click here ~~

                                        ***A. Arrays***

You are given two arrays A and B consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose k numbers in array A and choose m numbers in array B so that any number chosen in the first array is strictly less than any number chosen in the second array.

Input
The first line contains two integers nA, nB (1 ≤ nA, nB ≤ 105), separated by a spacethe sizes of arrays A and B, correspondingly.

The second line contains two integers k and m (1 ≤ k ≤ nA, 1 ≤ m ≤ nB), separated by a space.

The third line contains nA numbers a1, a2, ... anA ( - 109 ≤ a1 ≤ a2 ≤ ... ≤ anA ≤ 109), separated by spaces — elements of array A.

The fourth line contains nB integers b1, b2, ... bnB ( - 109 ≤ b1 ≤ b2 ≤ ... ≤ bnB ≤ 109), separated by spaces — elements of array B.

Output
Print "YES" (without the quotes), if you can choose k numbers in array A and m numbers in array B so that any number chosen in array A was strictly less than any number chosen in array B. Otherwise, print "NO" (without the quotes).

题目大意:给你连个数组 a 和 b ,两个数 m, k 分别是数组 a 的 m 个数和数组 b 的 k 个数,然后是数组a和b的值,看是否满足数组 b 中的 k 个数全比数组 a 的 m 个数大(a 和 b已经从小到大排好序)

解题思路:因为a 和 b已经排好序,所以只需要找 a 中的第 m 个数和 b
中的倒数第 k 个数就行 ,换句话说就是,找 a 中最大的数,和b中最小的数

上代码:

/*
Date : 2015-8-27 晚上
Author : ITAK

Motto :

今日的我要超越昨日的我,明日的我要胜过今日的我;
以创作出更好的代码为目标,不断地超越自己。
*/
#include <iostream>
#include <cstdio>
using namespace std;

const int maxn = 1e5 + 5;

int a[maxn], b[maxn];
int main()
{
    int na, nb, k, m;
    while(cin>>na>>nb)
    {
        cin>>k>>m;
        for(int i=0; i<na; i++)
            cin>>a[i];
        for(int i=0; i<nb; i++)
            cin>>b[i];
        if(a[k-1] < b[nb-m])
            puts("YES");
        else
            puts("NO");
    }
    return 0;
}
/**
input
3 3
2 1
1 2 3
3 4 5

output
YES


input
3 3
3 3
1 2 3
3 4 5

output
NO


input
5 2
3 1
1 1 1 1 1
2 2

output
YES
**/
目录
相关文章
|
6月前
codeforces 318 A.Even Odds B.Sereja and Array
codeforces 318 A.Even Odds B.Sereja and Array
14 0
|
6月前
|
人工智能
codeforces 315 B.Sereja and Array
codeforces 315 B.Sereja and Array
19 0
|
6月前
codeforces 299 A. Ksusha and Array
题目就是让你找出一个数组中可以将这个数组中所有数整除的数,很明显,如果存在,这个数肯定是最小的一个。
23 0
LeetCode 350. Intersection of Two Arrays II
给定两个数组,编写一个函数来计算它们的交集。
47 0
LeetCode 350. Intersection of Two Arrays II
|
Python
LeetCode 349. Intersection of Two Arrays
给定两个数组,编写一个函数来计算它们的交集。
51 0
LeetCode 349. Intersection of Two Arrays
CodeForces - 1312D Count the Arrays(思维+组合数学)
CodeForces - 1312D Count the Arrays(思维+组合数学)
83 0
|
人工智能 JavaScript BI
AtCoder Beginner Contest 222 D - Between Two Arrays(前缀和优化dp)
AtCoder Beginner Contest 222 D - Between Two Arrays(前缀和优化dp)
76 0
|
C++
HDOJ(HDU) 2093 考试排名(Arrays.sort排序、类的应用)
HDOJ(HDU) 2093 考试排名(Arrays.sort排序、类的应用)
95 0
HDOJ(HDU) 2093 考试排名(Arrays.sort排序、类的应用)
|
人工智能
LeetCode之Intersection of Two Arrays
LeetCode之Intersection of Two Arrays
78 0