刚哥遇到了感情问题(二)--南洋ACM-1294

2023-11-09 18:20

本文主要是介绍刚哥遇到了感情问题(二)--南洋ACM-1294,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

刚哥遇到了感情问题(二)

时间限制: 1000 ms  |  内存限制: 65535 KB
难度: 1
描述

上一集我们讲到 作为工作室老大的刚哥遇到很多女生的追求,你帮他个挑选了个英语成绩不错的对象。在你的帮助下,刚哥找到了个    英语学霸村    的小花,刚哥对小花的追求并不是那么一帆风顺。

事情是这样的:为了追求小花,刚哥打算给小花写点情书,然而小花却要求刚哥用英文给她写情书,并且要求刚哥不许使用百度翻译,这可难为刚哥了,刚哥自幼就爱国,对西洋文不怎么感冒,幸得健爷的帮助,刚哥成功把中文的情书翻译成了英文的情书,然而问题来了,刚哥写的情书太肉麻,健爷决定把   miss  love  kiss  这三个单词替换成  apple  banana  orange  ,眼看着今晚就要约会了,没有这些肉麻的词,刚哥约会时会不自在的.

你能在今晚10点前帮刚哥把信里面出现这三个单词的地方合理地用  miss  love  kiss  替换吗?刚哥都快急哭了,你就帮帮他吧  O(∩_∩)O~

输入
多组输入

一次输入多行

情书以 thas all 结束
程序 读到文档结束。
输出
帮刚哥把信里面出现这三个单词的地方合理地用 miss love kiss 替换, 原格式输出。
样例输入
Dear Mine: Just for one reason, I banana you so much. Nothing is impossible to a willing mind, banana included. Therefore, day after day, I wonder why, I wonder how, I wonder where you are. Time to go, I want to tell you how much I feel, and how much I banana you. When I think of you, the miles between us disappear. Seeing you will cause me an indescribable thrill, even at the sight of your handwriting will make me tremble. And the wonderful times we shared together shall always remain in my heart. You are my little angel. Just having you close fills me with banana and hope; nothing is impossible by your side. It is only when I nearly lose you that I become fully conscious of how much I value you. Accordingly, I would say, "I banana you" for millions and billions of times, and times and times again. Everything comes and goes, but banana stays. When you need someone, remember that I'd be there. If I were in heaven, I'd write your name on every star for all to see just how much you mean to me. No matter how long the road may be in the future, please cherish every moment we shared together. No matter how many years will pass away, please treasure our banana till the last day. banana is the triumph of imagination over intelligence.thas alli apple youi banana youi orange youthas all
样例输出
Dear Mine: Just for one reason, I love you so much. Nothing is impossible to a willing mind, love included. Therefore, day after day, I wonder why, I wonder how, I wonder where you are. Time to go, I want to tell you how much I feel, and how much I love you. When I think of you, the miles between us disappear. Seeing you will cause me an indescribable thrill, even at the sight of your handwriting will make me tremble. And the wonderful times we shared together shall always remain in my heart. You are my little angel. Just having you close fills me with love and hope; nothing is impossible by your side. It is only when I nearly lose you that I become fully conscious of how much I value you. Accordingly, I would say, "I love you" for millions and billions of times, and times and times again. Everything comes and goes, but love stays. When you need someone, remember that I'd be there. If I were in heaven, I'd write your name on every star for all to see just how much you mean to me. No matter how long the road may be in the future, please cherish every moment we shared together. No matter how many years will pass away, please treasure our love till the last day. love is the triumph of imagination over intelligence.thas alli miss youi love youi kiss youthas all
来源
自创
上传者

1483523635

AC情况:


代码《C语言》:

/*程序大体思路:char A[][7]={"apple","banana","orange"};  //A->Bchar B[][5]={"miss","love","kiss"};int  S[]={5,6,6};A[i]如果在字符串中匹配成功 需要替换成 B[i]输入了字符串C[] 后用 "apple","banana","orange" 分别与C[]匹配A[i]匹配成功,则对应的替换成 B[i]为了节省时间 我们不进行替换 而是得到替换的位置时输出"miss","love"或"kiss"然后i跳过"apple","banana"或"orange"的长度 即i+=S[i]那我们还需要在A[i]匹配成功时 再另外保存一个i 先举个例子比如 C="apple orange banana you"则 A[0]="apple"与C匹配后得到匹配的数组下标0    另外记个 0A[1]="banana"与C匹配后得到匹配的数组下标13  另外记个 1A[2]="orange"与C匹配后得到匹配的数组下标6   另外记个 2得到D[2][3]={{0,0},{13,1},{6,2}}以D[0]为主顺序 升序排列  得到 D[2][3]={{0,0},{6,2},{13,1}}然后在输出C的过程中 遇到 0 6 13 我们就知道对应输出 B[0],B[2],B[1].上句话就是:        遇到 D[0][0] D[0][1] D[0][2]我们就知道对应输出 B[D[1][0]],B[D[1][1]],B[D[1][2]]即当我们得到D数组并升序(D数组中存储的匹配的总个数为num):for(i=k=0;C[i];i++){   //输出C字符串if(i==D[0][k]&&k<num)//当i到达 D[0][k]的位置{printf("%s",B[D[1][k]]);//输出B[D[1][k]]i+=S[D[1][k++]];//i加上 "apple","banana"或者"orange"的长度 并且D数组移动到下一个位置}else printf("%c",C[i]);//如果没有到达D的位置 原样输出}
*/
# include <stdio.h>
# define N 201
char A[][7]={"apple","banana","orange"};  //A->B
char B[][5]={"miss","love","kiss"};
int S[]={4,5,5},num,D[2][N];
char C[N];
int BF(char a[],char b[],int c[]);//BF算法 a为主串,b为被检验的串`返回b在a中的第一个下标 若无返回0
void change(int *a,int *b);//交换函数
void Qsort(int A[][N],int left,int right);//快速排序 升序
int main(){int i,j,k;//freopen("AAA.txt","r",stdin);while(gets(C)){for(i=j=num=0;i<3;i++)//用 A[i]匹配C 返回匹配的个数{k=BF(C,A[i],D[0]);//k记录A[i]匹配的个数while(k--)D[1][j++]=i;//D[1]用来存储i}Qsort(D,0,num-1);//以A[0]升序 从下标0---  num-1  一共num个for(i=j=0;C[i];i++){//输出if(i==D[0][j]&&j<num){printf("%s",B[D[1][j]]);i+=S[D[1][j++]];}else printf("%c",C[i]);}printf("\n");//输出回车符}return 0;
}
int BF(char a[],char b[],int c[]){int i=0,j=0,k=num;do{if (b[j]&&a[i++]==b[j])++j;else{b[j]?(i-=j):(c[num++]=i-j);j=0;}}while(a[i-1]);return num-k;
}
void change(int *a,int *b){//交换函数 交换a b的值int c=*a;*a=*b;*b=c;
}
void Qsort(int A[][N],int left,int right)//不需要知道内部 只需要知道是升序就行了
{int i=left,j=right,temp=A[0][left];if(left>=right)  return;while(i!=j){while(A[0][j]>=temp && i<j) j--;while(A[0][i]<=temp && i<j)i++;if(i<j){change(&A[0][i],&A[0][j]);change(&A[1][i],&A[1][j]);}
}change(&A[0][left],&A[0][i]);change(&A[1][left],&A[1][i]);Qsort(A,left,i-1);Qsort(A,i+1,right);
}

代码2:


/*程序大体思路:char A[][7]={"apple","banana","orange"};  //A->Bchar B[][5]={"miss","love","kiss"};int  S[]={5,6,6};A[i]如果在字符串中匹配成功 需要替换成 B[i]输入了字符串C[] 后用 "apple","banana","orange" 分别与C[]匹配A[i]匹配成功,则对应的替换成 B[i]为了节省时间 我们不进行替换 而是得到替换的位置时输出"miss","love"或"kiss"然后i跳过"apple","banana"或"orange"的长度 即i+=S[i]那我们还需要在A[i]匹配成功时 再另外保存一个i 先举个例子比如 C="apple orange banana you"则 A[0]="apple"与C匹配后得到匹配的数组下标0    另外记个 0A[1]="banana"与C匹配后得到匹配的数组下标13  另外记个 1A[2]="orange"与C匹配后得到匹配的数组下标6   另外记个 2得到D[2][3]={{0,0},{13,1},{6,2}}以D[0]为主顺序 升序排列  得到 D[2][3]={{0,0},{6,2},{13,1}}然后在输出C的过程中 遇到 0 6 13 我们就知道对应输出 B[0],B[2],B[1].上句话就是:        遇到 D[0][0] D[0][1] D[0][2]我们就知道对应输出 B[D[1][0]],B[D[1][1]],B[D[1][2]]即当我们得到D数组并升序(D数组中存储的匹配的总个数为num):for(i=k=0;C[i];i++){   //输出C字符串if(i==D[0][k]&&k<num)//当i到达 D[0][k]的位置{printf("%s",B[D[1][k]]);//输出B[D[1][k]]i+=S[D[1][k++]];//i加上 "apple","banana"或者"orange"的长度 并且D数组移动到下一个位置}else printf("%c",C[i]);//如果没有到达D的位置 原样输出}
*/
# include <stdio.h>
# define N 201
char A[][7]={"apple","banana","orange"};  //A->B
char B[][5]={"miss","love","kiss"};
int S[]={4,5,5},D[2][N];
char C[N];
int BF(char a[],char b[],int c[]);//BF算法 a为主串,b为被检验的串`返回b在a中的第一个下标 若无返回0
void change(int *a,int *b);//交换函数
void Qsort(int A[][N],int left,int right);//快速排序 升序
int main(){int i,j,k;//freopen("AAA.txt","r",stdin);while(gets(C)){for(i=j=D[0][0]=0;i<3;i++)//用 A[i]匹配C 返回匹配的个数{k=BF(C,A[i],D[0]);//k记录A[i]匹配的个数while(k--)D[1][++j]=i;//D[1]用来存储i}Qsort(D,1,D[0][0]-1);//以A[0]升序 从下标0---  num-1  一共num个for(i=0,j=1;C[i];i++){//输出if(i==D[0][j]&&j<=D[0][0]){printf("%s",B[D[1][j]]);i+=S[D[1][j++]];}else printf("%c",C[i]);}printf("\n");//输出回车符}return 0;
}
int BF(char a[],char b[],int c[]){int i=0,j=0,k=c[0];do{if (b[j]&&a[i++]==b[j])++j;else{b[j]?(i-=j):(c[++c[0]]=i-j);j=0;}}while(a[i-1]);return c[0]-k;
}
void change(int *a,int *b){//交换函数 交换a b的值int c=*a;*a=*b;*b=c;
}
void Qsort(int A[][N],int left,int right)//不需要知道内部 只需要知道是升序就行了
{int i=left,j=right,temp=A[0][left];if(left>=right)  return;while(i!=j){while(A[0][j]>=temp && i<j) j--;while(A[0][i]<=temp && i<j)i++;if(i<j){change(&A[0][i],&A[0][j]);change(&A[1][i],&A[1][j]);}
}if(i!=left){change(&A[0][left],&A[0][i]);change(&A[1][left],&A[1][i]);}Qsort(A,left,i-1);Qsort(A,i+1,right);
}


这篇关于刚哥遇到了感情问题(二)--南洋ACM-1294的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/377815

相关文章

好题——hdu2522(小数问题:求1/n的第一个循环节)

好喜欢这题,第一次做小数问题,一开始真心没思路,然后参考了网上的一些资料。 知识点***********************************无限不循环小数即无理数,不能写作两整数之比*****************************(一开始没想到,小学没学好) 此题1/n肯定是一个有限循环小数,了解这些后就能做此题了。 按照除法的机制,用一个函数表示出来就可以了,代码如下

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

购买磨轮平衡机时应该注意什么问题和技巧

在购买磨轮平衡机时,您应该注意以下几个关键点: 平衡精度 平衡精度是衡量平衡机性能的核心指标,直接影响到不平衡量的检测与校准的准确性,从而决定磨轮的振动和噪声水平。高精度的平衡机能显著减少振动和噪声,提高磨削加工的精度。 转速范围 宽广的转速范围意味着平衡机能够处理更多种类的磨轮,适应不同的工作条件和规格要求。 振动监测能力 振动监测能力是评估平衡机性能的重要因素。通过传感器实时监

缓存雪崩问题

缓存雪崩是缓存中大量key失效后当高并发到来时导致大量请求到数据库,瞬间耗尽数据库资源,导致数据库无法使用。 解决方案: 1、使用锁进行控制 2、对同一类型信息的key设置不同的过期时间 3、缓存预热 1. 什么是缓存雪崩 缓存雪崩是指在短时间内,大量缓存数据同时失效,导致所有请求直接涌向数据库,瞬间增加数据库的负载压力,可能导致数据库性能下降甚至崩溃。这种情况往往发生在缓存中大量 k

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)

【VUE】跨域问题的概念,以及解决方法。

目录 1.跨域概念 2.解决方法 2.1 配置网络请求代理 2.2 使用@CrossOrigin 注解 2.3 通过配置文件实现跨域 2.4 添加 CorsWebFilter 来解决跨域问题 1.跨域概念 跨域问题是由于浏览器实施了同源策略,该策略要求请求的域名、协议和端口必须与提供资源的服务相同。如果不相同,则需要服务器显式地允许这种跨域请求。一般在springbo

题目1254:N皇后问题

题目1254:N皇后问题 时间限制:1 秒 内存限制:128 兆 特殊判题:否 题目描述: N皇后问题,即在N*N的方格棋盘内放置了N个皇后,使得它们不相互攻击(即任意2个皇后不允许处在同一排,同一列,也不允许处在同一斜线上。因为皇后可以直走,横走和斜走如下图)。 你的任务是,对于给定的N,求出有多少种合法的放置方法。输出N皇后问题所有不同的摆放情况个数。 输入

vscode中文乱码问题,注释,终端,调试乱码一劳永逸版

忘记咋回事突然出现了乱码问题,很多方法都试了,注释乱码解决了,终端又乱码,调试窗口也乱码,最后经过本人不懈努力,终于全部解决了,现在分享给大家我的方法。 乱码的原因是各个地方用的编码格式不统一,所以把他们设成统一的utf8. 1.电脑的编码格式 开始-设置-时间和语言-语言和区域 管理语言设置-更改系统区域设置-勾选Bata版:使用utf8-确定-然后按指示重启 2.vscode

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR