您的位置:首页 > 财经 > 金融 > 7.11 cf div3 C

7.11 cf div3 C

2025/1/11 2:09:36 来源:https://blog.csdn.net/2301_80170590/article/details/140346847  浏览:    关键词:7.11 cf div3 C

Problem - C - Codeforces

操作

根据给定的索引数组ind和字符串c,按照一定的顺序修改字符串s中对应位置的字符。具体来说,第i次操作会修改s中索引为indi的位置的字符,将其设置为ci。

将c字符串按照从小到大排序,替换ind数组所表示的s的下标

ac代码
#include<bits/stdc++.h>
typedef long long ll;#define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
const ll N=1e3;
using namespace std;int main()
{IOS;int t;cin>>t;while(t--){string s,c;int lens,lenc;cin>>lens>>lenc;cin>>s;int ind[lenc];map<int,int>mp;for(int i=0;i<lenc;i++) {cin>>ind[i];mp[ind[i]]++;}char p[lenc];cin>>c;for(int i=0;i<lenc;i++){p[i]=c[i];}sort(p,p+lenc);int k=0;for(auto it:mp){int x=it.first;x--;s[x]=p[k++];}for(int i=0;i<lens;i++) cout<<s[i];cout<<endl;}return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com