B. The String Has a Target(贪心)

  • Post author:
  • Post category:其他



目录


题目描述


输入


输出


ac代码


注意


题目描述

最多使用一次操作使得字符,能变成当前字典序最小的情况,找到后面比第一个字符小的最小的字符,防在最前面

输入

4

3

cba

4

acac

5

abbcb

4

aaba

输出

acb

aacc

abbcb

aaab

ac代码

#include <iostream>
#include <vector>
#include <bits/stdc++.h>
#include <unordered_map>
#include <queue>
#include <algorithm>
#define x first
#define y second
#define pb emplace_back
#define fu(i,a,b) for(int i=a;i<=b; ++ i)
#define fd(i,a,b) for(int i=a;i>=b;	-- i)
#define endl '\n'
#define ms(x,y) memset(x,y,sizeof x)
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
using namespace std;


typedef long long LL;
typedef unsigned long long ULL;
typedef vector<vector<LL>> VVL;
typedef vector<vector<int>> VVI;
typedef vector<LL> VL;
typedef vector<int> VI;
typedef vector<string> VS;
typedef pair<int,int> PII;
typedef vector<PII> VPII;
typedef pair<PII,int> PIII;
typedef pair<double,double> PDD;
typedef pair<double,int> PDI;
typedef pair<char,int> PCI;
typedef pair<string,int> PSI;
typedef pair<int,string> PIS;
typedef pair<int,char> PIC;
typedef pair<LL,LL> PLL;
typedef __int128 i128;
typedef unsigned long long ULL;
const int N =1e3+ 10,M = N *4,INF = 0x3f3f3f3f,P = 131;
const double eps = 1e-8;
const int mod = 998244353,base= 20010;
const LL LNF=(LL) INF * INF;



inline void solve()
{
	int n ; cin >> n ;
	string s;cin >> s;
	int pos=0;
	fu(i,1,n-1)if(s[i] <= s[pos]) pos = i;
	
	s = s[pos] + s.substr(0,pos) + s.substr(pos+1);
	
	cout << s << endl;
	
		
				 
}
signed main()
{
//  freopen("1.txt","r",stdin);
//	#define int long long 
//	init(N-1);
    // ios
//	cout << fixed<<setprecision(2);
    int t=1;
     cin>>t;
    int now = 1;
    while(t -- )
    {
//      cout<<"Case "; 
//      cout<<"Case #"; 
//      cout<<"Scenario #"; 
//      cout<< now ++ <<": ";
//      cout<< now ++ <<": \n";
        solve();
    }


    return 0;
}

注意



版权声明:本文为Kingcarry6原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。