题解 | #字符覆盖#

字符覆盖

https://www.nowcoder.com/practice/d7ae059c1cee491989412c4fa39d4384

#include <iostream>
#include<algorithm>
using namespace std;


int work(string& s,string& t)
{
    int i=0;
    std::sort(t.begin(),t.end(),std::greater<char>());
    for(auto& ch : s)
    {
        if(ch<t[i])
        {
            ch=t[i];
            i++;
        }
        
    }
    return 0;
}

int main() {
    string a, b;


    while (cin >> a >> b) { // 注意 while 处理多个 case
        work(a,b);
        cout << a << endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

object3:开始给部分🌸孝子上人生第一课了
点赞 评论 收藏
分享
10-17 12:16
同济大学 Java
7182oat:快快放弃了然后发给我,然后让我也泡他七天最后再拒掉,狠狠羞辱他一把😋
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务