目录
一、题目
1、题目描述
2、输入输出
2.1输入
2.2输出
3、原题链接
二、解题报告
1、思路分析
2、复杂度
3、代码详解
一、题目
1、题目描述
2、输入输出
2.1输入
2.2输出
3、原题链接
1290B - Irreducible Anagrams
二、解题报告
1、思路分析
首先根据样例特判 l == r,直接YES
如果 s[l, r] 中字符种类 = 2 并且 s[l] != s[r],那么我们把所有的s[r] 放前面,剩下的s[l] 放后面
这么你咋切割,l 和 r 两个位置总有一个位置因为放在了分割线另一边而满足不了
如果 s[l, r] 中字符种类 > 2 并且 s[l] == s[r],我们只证种类为3时成立,> 3自然成立
不妨记字符为A,B,C,s[l] = s[r] = A
我们把B放左边,C放右边,A放中间,这样怎么切总会导致A满足不了
其余情况无解
2、复杂度
时间复杂度: O(26(n + q))空间复杂度:O(26n)
3、代码详解
#include <bits/stdc++.h>
using i64 = long long;
using i32 = unsigned int;
using u64 = unsigned long long;
using i128 = __int128;
constexpr int inf32 = 1E9 + 7;
constexpr i64 inf64 = 1E18 + 7;
constexpr int P = 998'244'353;
void solve() {
std::string s;
std::cin >> s;
int n = s.size();
std::vector<std::array<int, 26>> acc(n + 1);
for (int i = 0; i < n; ++ i) {
for (int j = 0; j < 26; ++ j)
acc[i + 1][j] = acc[i][j] + (s[i] == 'a' + j);
}
int q;
std::cin >> q;
for (int i = 0, l, r; i < q; ++ i) {
std::cin >> l >> r;
if (l == r) {
std::cout << "Yes\n";
continue;
}
int c = 0;
for (int j = 0; j < 26; ++ j)
c += (acc[r][j] - acc[l - 1][j] > 0);
if (c > 2) {
std::cout << "Yes\n";
continue;
}
if (c == 2 && s[l - 1] != s[r - 1]) {
std::cout << "Yes\n";
continue;
}
std::cout << "No\n";
}
}
auto FIO = []{
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
return 0;
}();
int main () {
#ifdef DEBUG
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
#endif
int T = 1;
// std::cin >> T;
while (T --) {
solve();
}
return 0;
}