display one's slight skill before an ecpert是啥意思?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了display one's slight skill before an ecpert是啥意思?相关的知识,希望对你有一定的参考价值。

display one\'s slight skill before an ecpert
显示一个轻微的技巧在评
display
英 [dɪˈspleɪ] 美 [dɪˈsple]
n.
显示器; 展览,陈列; 陈列品,展览品; 炫耀
vt.
显示; 陈列; 展开,伸展; 夸示,炫耀
vi.
(计算机屏幕上)显示
第三人称单数: displays 复数: displays 现在分词: displaying 过去式: displayed 过去分词: displayed 形近词: cosplay diplay byplay replay outplay
数据来源:金山词霸
双语例句柯林斯词典英英释义百度百科百度知道
1
Among the protesters and war veterans proudly displaying their medals was Aubrey Rose.
在抗议者和骄傲地展示勋章的退伍老兵中,就有奥布里·罗斯。
参考技术A display one's slight skill before an ecpert
显示一个轻微的技巧在评
参考技术B display one's slight skill before an expert
在一个专家面前班门弄斧

uva12545 比特变换器(贪心)

uva12545 比特变换器(贪心)

输入两个等长的串S,T(长度小于100),其中S包含字符0,1,?,T中包含0和1。有三种操作:将S中的0变为1,?变为0或1,交换S中的任意两个字符。求将S变成T的最少步数。

首先考虑去掉问号。设S中1的个数为one1,T中1的个数为one2。在one1<one2的前提下,肯定是把问号填成与T中相同的数字更优。如果one1=one2,那么问号中只能填0。接着就是考虑将0变成1,相同的思路即可。最后等到one1=one2,统计S和T中不同的数字,计算出还要再走几步即可。

#include <cstdio>
#include <cstring>
using namespace std;

const int maxl=105;
int T, l1, l2, one1, one2, step;
char s1[maxl], s2[maxl];

int main(){
    scanf("%d", &T);
    for (int it=1; it<=T; ++it){
        scanf("%s%s", s1, s2);
        one1=one2=step=0; int tmp=0;
        l1=strlen(s1); l2=strlen(s2);
        for (int i=0; i<l1; ++i)
            if (s1[i]=='1') ++one1;
        for (int i=0; i<l2; ++i)
            if (s2[i]=='1') ++one2;
        if (l1!=l2||one1>one2){
            printf("Case %d: -1\n", it);
            continue; }
        for (int i=0; i<l1; ++i)
            if (s1[i]=='?'){  //用贪心法去除所有问号
                s1[i]=s2[i];
                if (s1[i]=='1') ++one1;
                if (one1>one2) --one1, s1[i]='0';                ++step;
            }
        for (int i=0; i<l1; ++i) //用贪心法化0为1
        if (one1<one2&&s1[i]=='0'&&s2[i]=='1'){
            ++one1; s1[i]='1'; ++step;
        }
        for (int i=0; i<l1; ++i) //统计不同之处
            if (s1[i]!=s2[i]) ++tmp;
        step+=tmp/2; //这是由于只有0和1
        printf("Case %d: %d\n", it, step);
    }
    return 0;
}

以上是关于display one's slight skill before an ecpert是啥意思?的主要内容,如果未能解决你的问题,请参考以下文章

One Oier' s dawn

Here's to the crazy ones(苹果的价值观)

LF.85.Determine If One String Is Another's Substring

习语Paddle one's own canoe

be at one's books 的结实?

The Magic only works with total devtion of one's heart