2020 华为机试 三道编程题

2024-03-31 17:58
文章标签 2020 华为 编程 机试 三道

本文主要是介绍2020 华为机试 三道编程题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

投的网络安全岗位,三道编程题。其实不难....

测试用例都过了。但是....

第一题,不太熟悉newcode输入输出,python用 for line in sys.stdin 读一行数据有问题,导致花了半个小时调试。

第二题由于多了一个print导致0通过率。

第三题由于时间复杂度问题通过20%。

#coding=utf-8
# 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import sysdef replace(string, word):"""replace the word in the string"""if word in string:replaceWord = len(word)*"*"result = string.replace(word, replaceWord)else:result = stringreturn resultif __name__ == "__main__":while True:input_line = sys.stdin.readline().replace('\n', '')# print input_lineif not input_line:break;string = input_line.split(" ")[0]word = input_line.split(" ")[1]# print string# print wordresult = replace(string, word)print result

 

第二题:

#coding=utf-8
# 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import sys
'''
6
8
1 2 3 4 5 6
Q 1 6
U 2 6
U 4 3 
Q 2 4
Q 1 2
U 1 3
U 2 1 
Q 1 33
6
4
5
'''
if __name__ == "__main__":areaNum = int(sys.stdin.readline().replace('\n', ''))operateNum = int(sys.stdin.readline().replace('\n', ''))data_input = sys.stdin.readline().replace('\n', '').split(' ')data = [int(x) for x in data_input]                             # to integerfor i in xrange(operateNum):operate = sys.stdin.readline().replace('\n', '').split(' ')if operate[0] == 'Q':       # QoffLeft = int(operate[1]) - 1offRight = int(operate[2]) - 1number = offRight - offLeft + 1# print offLeft, offRighttmpOperate = data[offLeft: offRight + 1]# print tmpOperatesum = 0for i in tmpOperate:sum += int(i)result = sum/numberprint resultelif operate[0] == 'U':# print 'U' # U# operate = sys.stdin.readline().replace('\n', '').split(' ')id = int(operate[1]) - 1# print 'old', data[id]data[id] += int(operate[2])# print 'new', data[id]

 

第三题:

#coding=utf-8
# 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import sys
'''
2
3
1 3 2 
3 
2 1 31 1
1 1
'''
if __name__ == "__main__":number = int(sys.stdin.readline().replace('\n', ''))for i in xrange(number):daysNumber = int(sys.stdin.readline().replace('\n', ''))# print daysNumberdata = sys.stdin.readline().replace('\n', '').split(' ')maxScore = 0allScore = 0for i in xrange(len(data)):todayScore = 0if i == 0:                  # first daycontinuefor j in range(i):if data[j] > data[i] :todayScore -= 1;elif data[j] < data[i] :todayScore += 1;allScore += todayScoreif allScore > maxScore:maxScore = allScoreprint maxScore, allScore

 

这篇关于2020 华为机试 三道编程题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

uva 10055 uva 10071 uva 10300(水题两三道)

情歌两三首,水题两三道。 好久没敲代码了为暑假大作战热热身。 uva 10055 Hashmat the Brave Warrior 求俩数相减。 两个debug的地方,一个是longlong,一个是输入顺序。 代码: #include<stdio.h>int main(){long long a, b;//debugwhile(scanf("%lld%lld", &

【编程底层思考】垃圾收集机制,GC算法,垃圾收集器类型概述

Java的垃圾收集(Garbage Collection,GC)机制是Java语言的一大特色,它负责自动管理内存的回收,释放不再使用的对象所占用的内存。以下是对Java垃圾收集机制的详细介绍: 一、垃圾收集机制概述: 对象存活判断:垃圾收集器定期检查堆内存中的对象,判断哪些对象是“垃圾”,即不再被任何引用链直接或间接引用的对象。内存回收:将判断为垃圾的对象占用的内存进行回收,以便重新使用。

Go Playground 在线编程环境

For all examples in this and the next chapter, we will use Go Playground. Go Playground represents a web service that can run programs written in Go. It can be opened in a web browser using the follow

深入理解RxJava:响应式编程的现代方式

在当今的软件开发世界中,异步编程和事件驱动的架构变得越来越重要。RxJava,作为响应式编程(Reactive Programming)的一个流行库,为Java和Android开发者提供了一种强大的方式来处理异步任务和事件流。本文将深入探讨RxJava的核心概念、优势以及如何在实际项目中应用它。 文章目录 💯 什么是RxJava?💯 响应式编程的优势💯 RxJava的核心概念

函数式编程思想

我们经常会用到各种各样的编程思想,例如面向过程、面向对象。不过笔者在该博客简单介绍一下函数式编程思想. 如果对函数式编程思想进行概括,就是f(x) = na(x) , y=uf(x)…至于其他的编程思想,可能是y=a(x)+b(x)+c(x)…,也有可能是y=f(x)=f(x)/a + f(x)/b+f(x)/c… 面向过程的指令式编程 面向过程,简单理解就是y=a(x)+b(x)+c(x)

机试算法模拟题 服务中心选址

题目描述 一个快递公司希望在一条街道建立新的服务中心。公司统计了该街道中所有区域在地图上的位置,并希望能够以此为依据为新的服务中心选址:使服务中心到所有区域的距离的总和最小。 给你一个数组positions,其中positions[i] = [left, right] 表示第 i 个区域在街道上的位置,其中left代表区域的左侧的起点,right代表区域的右侧终点,假设服务中心的位置为loca

Java并发编程之——BlockingQueue(队列)

一、什么是BlockingQueue BlockingQueue即阻塞队列,从阻塞这个词可以看出,在某些情况下对阻塞队列的访问可能会造成阻塞。被阻塞的情况主要有如下两种: 1. 当队列满了的时候进行入队列操作2. 当队列空了的时候进行出队列操作123 因此,当一个线程试图对一个已经满了的队列进行入队列操作时,它将会被阻塞,除非有另一个线程做了出队列操作;同样,当一个线程试图对一个空