Codeforces Round #604 (Div. 2) A. Beautiful String(贪心)
Posted kanoon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #604 (Div. 2) A. Beautiful String(贪心)相关的知识,希望对你有一定的参考价值。
题目链接:https://codeforces.com/contest/1265/problem/A
题意
给出一个由 a, b, c, ? 组成的字符串,将 ? 替换为 a, b, c 中的一个字母,问能否字符串中所有相邻字母都不同。
题解
除非一开始字符串就不合法,否则一定可以构造出合法的字符串,因为共有三个字母可选,而替换时最多需要判断前后两个位置。
代码
#include <bits/stdc++.h> using namespace std; void solve() { string s; cin >> s; for (int i = 1; i < s.size(); i++) if (islower(s[i]) and s[i] == s[i - 1]) { cout << -1 << " "; return; } for (int i = 0; i < s.size(); i++) if (s[i] == ‘?‘) for (char c : {‘a‘, ‘b‘, ‘c‘}) if (i == 0) { if (c != s[i + 1]) s[i] = c; } else if (i == s.size() - 1) { if (c != s[i - 1]) s[i] = c; } else { if (c != s[i - 1] and c != s[i + 1]) s[i] = c; } cout << s << " "; } int main() { int t; cin >> t; while (t--) solve(); }
以上是关于Codeforces Round #604 (Div. 2) A. Beautiful String(贪心)的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #604 (Div. 2)
Codeforces Round #604 (Div. 2)
Codeforces Round #604 (Div. 2)
Codeforces Round #604 (Div. 2) A. Beautiful String
Codeforces Round #604 (Div. 2) D. Beautiful Sequence(构造)
Codeforces Round #604 (Div. 2) C. Beautiful Regional Contest