CF425C.Sereja and Two Sequences

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Sereja has two sequences a1,a2,...,ana_{1},a_{2},...,a_{n} and b1,b2,...,bmb_{1},b_{2},...,b_{m} , consisting of integers. One day Sereja got bored and he decided two play with them. The rules of the game was very simple. Sereja makes several moves, in one move he can perform one of the following actions:

  1. Choose several (at least one) first elements of sequence aa (non-empty prefix of aa ), choose several (at least one) first elements of sequence bb (non-empty prefix of bb ); the element of sequence aa with the maximum index among the chosen ones must be equal to the element of sequence bb with the maximum index among the chosen ones; remove the chosen elements from the sequences.
  2. Remove all elements of both sequences.

The first action is worth ee energy units and adds one dollar to Sereja's electronic account. The second action is worth the number of energy units equal to the number of elements Sereja removed from the sequences before performing this action. After Sereja performed the second action, he gets all the money that he earned on his electronic account during the game.

Initially Sereja has ss energy units and no money on his account. What maximum number of money can Sereja get? Note, the amount of Seraja's energy mustn't be negative at any time moment.

输入格式

The first line contains integers nn , mm , ss , ee (1<=n,m<=105; 1<=s<=3105; 103<=e<=104)(1<=n,m<=10^{5}; 1<=s<=3·10^{5}; 10^{3}<=e<=10^{4}) . The second line contains nn integers a1a_{1} , a2a_{2} , ...... , ana_{n} (1<=ai<=105)(1<=a_{i}<=10^{5}) . The third line contains mm integers b1b_{1} , b2b_{2} , ...... , bmb_{m} (1<=bi<=105)(1<=b_{i}<=10^{5}) .

输出格式

Print a single integer — maximum number of money in dollars that Sereja can get.

输入输出样例

  • 输入#1

    5 5 100000 1000
    1 2 3 4 5
    3 2 4 5 1
    

    输出#1

    3
    
  • 输入#2

    3 4 3006 1000
    1 2 3
    1 2 4 3
    

    输出#2

    2
    
首页