B. Azamon Web Services

194 篇文章 1 订阅
5 篇文章 0 订阅

链接:https://codeforces.com/contest/1281/problem/B

Your friend Jeff Zebos has been trying to run his new online company, but it's not going very well. He's not getting a lot of sales on his website which he decided to call Azamon. His big problem, you think, is that he's not ranking high enough on the search engines. If only he could rename his products to have better names than his competitors, then he'll be at the top of the search results and will be a millionaire.

After doing some research, you find out that search engines only sort their results lexicographically. If your friend could rename his products to lexicographically smaller strings than his competitor's, then he'll be at the top of the rankings!

To make your strategy less obvious to his competitors, you decide to swap no more than two letters of the product names.

Please help Jeff to find improved names for his products that are lexicographically smaller than his competitor's!

Given the string ss representing Jeff's product name and the string cc representing his competitor's product name, find a way to swap at most one pair of characters in ss (that is, find two distinct indices ii and jj and swap sisi and sjsj) such that the resulting new name becomes strictly lexicographically smaller than cc, or determine that it is impossible.

Note: String aa is strictly lexicographically smaller than string bb if and only if one of the following holds:

  • aa is a proper prefix of bb, that is, aa is a prefix of bb such that a≠ba≠b;
  • There exists an integer 1≤i≤min(|a|,|b|)1≤i≤min(|a|,|b|) such that ai<biai<bi and aj=bjaj=bj for 1≤j<i1≤j<i.

Input

The first line of input contains a single integer tt (1≤t≤15001≤t≤1500) denoting the number of test cases. The next lines contain descriptions of the test cases.

Each test case consists of a single line containing two space-separated strings ss and cc (2≤|s|≤5000,1≤|c|≤50002≤|s|≤5000,1≤|c|≤5000). The strings ssand cc consists of uppercase English letters.

It is guaranteed that the sum of |s||s| in the input is at most 50005000 and the sum of the |c||c| in the input is at most 50005000.

Output

For each test case, output a single line containing a single string, which is either

  • the new name which is obtained after swapping no more than one pair of characters that is strictly lexicographically smaller than cc. In case there are many possible such strings, you can output any of them;
  • three dashes (the string "---" without quotes) if it is impossible.

Example

input

Copy

3
AZAMON APPLE
AZAMON AAAAAAAAAAALIBABA
APPLE BANANA

output

Copy

AMAZON
---
APPLE

Note

In the first test case, it is possible to swap the second and the fourth letters of the string and the resulting string "AMAZON" is lexicographically smaller than "APPLE".

It is impossible to improve the product's name in the second test case and satisfy all conditions.

In the third test case, it is possible not to swap a pair of characters. The name "APPLE" is lexicographically smaller than "BANANA". Note that there are other valid answers, e.g., "APPEL".

代码:

#include<bits/stdc++.h>
using namespace std;
string a,b;
long long t,n;
int main() 
{
	cin>>t;
	while(t--) 
	{
		cin>>a>>b;
		n=a.size();
		int mi=-1,las=-1,lmi=-1;
		for(int i=n-1;i>=0;i--) 
		{
			if(~mi&&a[mi]<a[i])
			las=i,lmi=mi;
			else if(!~mi||a[i]<a[mi])
			mi=i;
		}
		if(~las)
		swap(a[las],a[lmi]);
		if(a<b)
		cout<<a<<endl;
		else 
		cout<<"---"<<endl;
	}
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值