思维+博弈论:字符串操作

Posted dragondragon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了思维+博弈论:字符串操作相关的知识,希望对你有一定的参考价值。

传送门:http://acm.hdu.edu.cn/contests/contest_showproblem.php?pid=1005&cid=856

#include<iostream>
using namespace std;
int main()

    int T;
    cin>>T;
    while(T--)
    
        string a;
        cin>>a;
        int len=a.length();
        int b;
        for(int i=0;i<len;i++)
        
            if(a[i]==‘y‘)
            
                continue;
            
            else
            
                b=i;
                break;
            
        
        if(a[b]==‘z‘)
        
            a[b]=‘b‘;
        
        cout<<a<<endl;
    

  

以上是关于思维+博弈论:字符串操作的主要内容,如果未能解决你的问题,请参考以下文章

D. Deleting Divisors(博弈,思维)

2020-2021 ICPC Southeastern European B. Reverse Game(思维,博弈)

bzoj1299[LLH邀请赛]巧克力棒(博弈论思维题)

[M博弈论] lc877. 石子游戏(博弈论+区间dp+好题+思维)

Future Failure CodeForces - 838C (博弈论,子集卷积)

Codeforces Round #726 (Div. 2) D. Deleting Divisors(博弈,思维)