刚哥遇到了感情问题(二)--南洋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

相关文章

Kotlin Map映射转换问题小结

《KotlinMap映射转换问题小结》文章介绍了Kotlin集合转换的多种方法,包括map(一对一转换)、mapIndexed(带索引)、mapNotNull(过滤null)、mapKeys/map... 目录Kotlin 集合转换:map、mapIndexed、mapNotNull、mapKeys、map

nginx中端口无权限的问题解决

《nginx中端口无权限的问题解决》当Nginx日志报错bind()to80failed(13:Permissiondenied)时,这通常是由于权限不足导致Nginx无法绑定到80端口,下面就来... 目录一、问题原因分析二、解决方案1. 以 root 权限运行 Nginx(不推荐)2. 为 Nginx

解决1093 - You can‘t specify target table报错问题及原因分析

《解决1093-Youcan‘tspecifytargettable报错问题及原因分析》MySQL1093错误因UPDATE/DELETE语句的FROM子句直接引用目标表或嵌套子查询导致,... 目录报js错原因分析具体原因解决办法方法一:使用临时表方法二:使用JOIN方法三:使用EXISTS示例总结报错原

Windows环境下解决Matplotlib中文字体显示问题的详细教程

《Windows环境下解决Matplotlib中文字体显示问题的详细教程》本文详细介绍了在Windows下解决Matplotlib中文显示问题的方法,包括安装字体、更新缓存、配置文件设置及编码調整,并... 目录引言问题分析解决方案详解1. 检查系统已安装字体2. 手动添加中文字体(以SimHei为例)步骤

SpringSecurity整合redission序列化问题小结(最新整理)

《SpringSecurity整合redission序列化问题小结(最新整理)》文章详解SpringSecurity整合Redisson时的序列化问题,指出需排除官方Jackson依赖,通过自定义反序... 目录1. 前言2. Redission配置2.1 RedissonProperties2.2 Red

nginx 负载均衡配置及如何解决重复登录问题

《nginx负载均衡配置及如何解决重复登录问题》文章详解Nginx源码安装与Docker部署,介绍四层/七层代理区别及负载均衡策略,通过ip_hash解决重复登录问题,对nginx负载均衡配置及如何... 目录一:源码安装:1.配置编译参数2.编译3.编译安装 二,四层代理和七层代理区别1.二者混合使用举例

怎样通过分析GC日志来定位Java进程的内存问题

《怎样通过分析GC日志来定位Java进程的内存问题》:本文主要介绍怎样通过分析GC日志来定位Java进程的内存问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、GC 日志基础配置1. 启用详细 GC 日志2. 不同收集器的日志格式二、关键指标与分析维度1.

Java 线程安全与 volatile与单例模式问题及解决方案

《Java线程安全与volatile与单例模式问题及解决方案》文章主要讲解线程安全问题的五个成因(调度随机、变量修改、非原子操作、内存可见性、指令重排序)及解决方案,强调使用volatile关键字... 目录什么是线程安全线程安全问题的产生与解决方案线程的调度是随机的多个线程对同一个变量进行修改线程的修改操

Redis出现中文乱码的问题及解决

《Redis出现中文乱码的问题及解决》:本文主要介绍Redis出现中文乱码的问题及解决,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1. 问题的产生2China编程. 问题的解决redihttp://www.chinasem.cns数据进制问题的解决中文乱码问题解决总结

全面解析MySQL索引长度限制问题与解决方案

《全面解析MySQL索引长度限制问题与解决方案》MySQL对索引长度设限是为了保持高效的数据检索性能,这个限制不是MySQL的缺陷,而是数据库设计中的权衡结果,下面我们就来看看如何解决这一问题吧... 目录引言:为什么会有索引键长度问题?一、问题根源深度解析mysql索引长度限制原理实际场景示例二、五大解决