一下午的编程思索录

Posted dragondragon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一下午的编程思索录相关的知识,希望对你有一定的参考价值。

1.  

Rikka with Coin

美国货币由美元dollar和美分cent组成,one dollar等于100 cents.

其纸币bill有一、二、五、十、二十、五十和一百美元等面值;

硬币(coin)有一美分(或a penny)、五美分(或a nickel)、十美分(或a dime)和二十五美分(或a quarter)等.

在数字前加$表示美元,如:$500表示五百美元;在数字后加C表示美分,如:50C表示50美分;表示由美元和美分组成的钱数时,常用$表示,如:$6.50.

Problem Description:

In the local currency system, there are 4 kinds of coins: 10 cents, 20 cents, 50 cents and 1 dollar.

1 dollar == 100 cents.

最优化问题

 

2.

Rikka with Game

技术图片技术图片

技术图片在两百次回眸之后!

optimally:最优地

Given a string s with only lowercase letters。

need to operate the string in turns while the first operation is 技术图片

技术图片

terminate:

(1).to end;to make sth end;

(2).to end a journey/trip;

Rikka wants to minimize the lexicographical order of the result;

Yuta wants to maximize it;

You are required to calculate the result of the game if both Rikka and Yuta play optimally.

optimist:乐天派

in each turn:

in turn:依次,轮流。

The tide is turning:涨潮了_____,

His luck is on the turn.___________他要时来运转了~。

#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;
            
        				//orz,寻找第一个非‘y‘的字符。 
        if(a[b]==‘z‘)	//判断此字符是否为z。 
        
            a[b]=‘b‘;
        
        
        cout<<a<<endl;
    

思维+博弈!  

 

 

 

 

 

 

以上是关于一下午的编程思索录的主要内容,如果未能解决你的问题,请参考以下文章

单片机ISPIAP和ICP几种烧录方式的区别

Android AspectJ的AOP切面编程学习(个人录)

Android AspectJ的AOP切面编程学习(个人录)

Java编程思想学习录(连载之:内部类)

函数式编程的一些心得与体会

TS编程——面向对象随手录——接口_命名空间——重构javaScrip 3D引擎代码部分——函数