CF169B.Replacing Digits

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an integer aa that consists of nn digits. You are also given a sequence of digits ss of length mm . The digit in position jj ( 1<=j<=m1<=j<=m ) of sequence ss means that you can choose an arbitrary position ii ( 1<=i<=n1<=i<=n ) in aa and replace the digit in the chosen position ii with sjs_{j} . Each element in the sequence ss can participate in no more than one replacing operation.

Your task is to perform such sequence of replacements, that the given number aa gets maximum value. You are allowed to use not all elements from ss .

输入格式

The first line contains positive integer aa . Its length nn is positive and doesn't exceed 10510^{5} . The second line contains sequence of digits ss . Its length mm is positive and doesn't exceed 10510^{5} . The digits in the sequence ss are written consecutively without any separators.

The given number aa doesn't contain leading zeroes.

输出格式

Print the maximum value that can be obtained from aa after a series of replacements. You are allowed to use not all elements from ss . The printed number shouldn't contain any leading zeroes.

输入输出样例

  • 输入#1

    1024
    010
    

    输出#1

    1124
    
  • 输入#2

    987
    1234567
    

    输出#2

    987
    
首页