CF1009A.Game Shopping

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first line of the input contains two integers nn and mm ( 1n,m10001 \le n, m \le 1000 ) — the number of games and the number of bills in Maxim's wallet.

The second line of the input contains nn integers c1,c2,,cnc_1, c_2, \dots, c_n ( 1ci10001 \le c_i \le 1000 ), where cic_i is the cost of the ii -th game.

The third line of the input contains mm integers a1,a2,,ama_1, a_2, \dots, a_m ( 1aj10001 \le a_j \le 1000 ), where aja_j is the value of the jj -th bill from the Maxim's wallet.

输入格式

Print a single integer — the number of games Maxim will buy.

输出格式

The first example is described in the problem statement.

In the second example Maxim cannot buy any game because the value of the first bill in his wallet is smaller than the cost of any game in the shop.

In the third example the values of the bills in Maxim's wallet are large enough to buy any game he encounter until he runs out of bills in his wallet.

输入输出样例

  • 输入#1

    5 4
    2 4 5 2 4
    5 3 4 6
    

    输出#1

    3
    
  • 输入#2

    5 2
    20 40 50 20 40
    19 20
    

    输出#2

    0
    
  • 输入#3

    6 4
    4 8 15 16 23 42
    1000 1000 1000 1000
    

    输出#3

    4
    

说明/提示

The first example is described in the problem statement.

In the second example Maxim cannot buy any game because the value of the first bill in his wallet is smaller than the cost of any game in the shop.

In the third example the values of the bills in Maxim's wallet are large enough to buy any game he encounter until he runs out of bills in his wallet.

首页