区间内的字符转换
输入一个01字符串,输入n个区间,然后对字符串的n个区间做转换,0变1,1变0
输入:
10101 2
1 3
2 2
输出
00001
解释:
执行1 3变为
01001
执行2 2变为
00001
解题思路:差分数组
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
vector<
区间内的字符转换
输入一个01字符串,输入n个区间,然后对字符串的n个区间做转换,0变1,1变0
输入:
10101 2
1 3
2 2
输出
00001
解释:
执行1 3变为
01001
执行2 2变为
00001
解题思路:差分数组
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
vector<