题解 | #字符覆盖#

字符覆盖

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")

全部评论

相关推荐

jack_miller:我给我们导员说我不在这里转正,可能没三方签了。导员说没事学校催的时候帮我想办法应付一下
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务