当前位置: 代码迷 >> 综合 >> Codeforces B. Universal Solution (构造字符串 / 思维) (Round 91 Rated for Div.2)
  详细解决方案

Codeforces B. Universal Solution (构造字符串 / 思维) (Round 91 Rated for Div.2)

热度:54   发布时间:2023-12-22 13:37:23.0

传送门

题意: 给出机器人的一段出拳序列s(只有 'R’拳头,'S’剪刀,'P’布组成)。让你构造一串出拳序列c和机器人比赛。
在这里插入图片描述
比赛得分机制为下:

  • 机器人选择pos = 1开始与你的1开始往后一 一对应比较,若你在某个位置赢了该回合的得分+1,若输了或平局没有得分,该回合得分为win(1)。
  • 机器人选择pos = 2开始与你的1开始往后一一对应比较,该回合得分win(2).
  • ……
  • 构造的串要使得(win(1) + win(2) + …… + win(n) / n最大。

在这里插入图片描述
思路:

  • 仔细分析下来就是(c[1]对战整个s的得分 + c[2]对战s的得分 + …… +c[n]对战整个s的得分) / n.
  • 而要使结果max,就需要用s中雷同最多的字符的反字符来构造成n个长度的串c。

代码实现:

#include<bits/stdc++.h>
#define endl '\n'
#define null NULL
#define ll long long
#define int long long
#define pii pair<int, int>
#define lowbit(x) (x &(-x))
#define ls(x) x<<1
#define rs(x) (x<<1+1)
#define me(ar) memset(ar, 0, sizeof ar)
#define mem(ar,num) memset(ar, num, sizeof ar)
#define rp(i, n) for(int i = 0, i < n; i ++)
#define rep(i, a, n) for(int i = a; i <= n; i ++)
#define pre(i, n, a) for(int i = n; i >= a; i --)
#define IOS ios::sync_with_stdio(0); cin.tie(0);cout.tie(0);
const int way[4][2] = {
    {
    1, 0}, {
    -1, 0}, {
    0, 1}, {
    0, -1}};
using namespace std;
const int  inf = 0x7fffffff;
const double PI = acos(-1.0);
const double eps = 1e-6;
const ll   mod = 1e9 + 7;
const int  N = 2e5 + 5;int t;
map<char, int> cnt;
map<char, char> mp{
    {
    'R', 'P'}, {
    'S', 'R'}, {
    'P', 'S'}};signed main()
{
    IOS;cin >> t;while(t --){
    string s; cin >> s;int mx = 0;cnt.clear();for(int i = 0; i < s.size(); i ++)mx = max(mx, ++cnt[s[i]]);for(char x : {
    'R', 'S', 'P'}){
    if(cnt[x] == mx){
    //找到雷同最多的字母cout << string(s.size(), mp[x]) << endl; //输出其反字母形成的串break;}}}return 0;
}
  相关解决方案