码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces 897A Scarborough Fair 暴力签到

时间:2017-12-04 17:38:37      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:思路   sync   题目   mes   names   air   ace   http   class   

codeforces 897A Scarborough Fair

题目链接:

http://codeforces.com/problemset/problem/897/A

思路:

暴力大法好

代码:

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
typedef long long ll;
int n,m;
string s;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cin>>n>>m;
    cin>>s;
    int l,r;
    char c1,c2;
    for(int i=0;i<m;++i) {
        cin>>l>>r>>c1>>c2;
        for(int j=l-1;j<=r-1;++j) {
            if(s[j]==c1) s[j]=c2;
        }
    }
    cout<<s<<endl;
    return 0;
}

codeforces 897A Scarborough Fair 暴力签到

标签:思路   sync   题目   mes   names   air   ace   http   class   

原文地址:http://www.cnblogs.com/lemonbiscuit/p/7977932.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!