牛客8008419号
牛客8008419号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客8008419号的博客
全部文章
/ 题解
(共23篇)
题解 | #称砝码#
```while True: try: n = int(input()) m = list(map(int, input().split())) x = list(map(int, input().split())) res =...
Python3
2021-12-16
0
576
题解 | #字符串合并处理#
```while True: try: s1, s2 = input().split() # 第一步:合并两个字符串: s = list(s1 + s2) # 第二步:对字符串排序: s[::2] = sorted(s[...
Python3
2021-12-15
2
342
题解 | #数据分类处理#使用字典嵌套
```while True: try: lst = input().split() lst_str = lst[1:] num = input().split() num_str = num[1:] num_st...
Python3
2021-12-15
1
565
题解 | #明明的随机数# 4行代码解决问题
```while True: try: num = int(input()) lst = [input() for i in range(num)] lst = map(int, set(lst)) print('\n'.joi...
Python3
2021-12-15
0
328
题解 | #密码验证合格程序#
```def check(s): if len(s) <= 8 : return False kind = [0, 0, 0, 0] for i in s: if i.isupper(): kind[0] = 1 ...
Python3
2021-12-14
3
543
题解 | #句子逆序#
```while True: try: s = input().split(' ') res = [x for x in reversed(s)] print(' '.join(res)) except: break
Python3
2021-12-14
0
304
题解 | #迷宫问题#利用list.pop方法后退寻找出路
本题的重点就是要记录走过的点的坐标,因此创建lst=[(0,0)]列表,储存经过的点的坐标值。 lst[-1]即为当前所在点的坐标,如果该坐标与终点坐标重合,则break,输出lst。 如果未走到终点,则对当前走过的迷宫的点进行特别标注,表示已经走过——“walked。” 然后对当前点做判读,i代表...
Python3
2021-12-06
31
2130
题解 | #迷宫问题#
while True: try: n1, n2 = [int(x) for x in input().split(' ')] maze = [] for i in range(n1+2): if i == 0 or i ...
Python3
2021-12-05
0
495
题解 | #Redraiment的走法#
这道题也可以看作“动态规划问题”,建议先看视频(10mins)https://www.bilibili.com/video/BV1AB4y1w7eT (感谢博主如此清晰的解析和制作视频的良苦用心,辛苦了,十分感谢) 举例:数组[1, 5, 2, 4, 3],求升序排列的子数组最大长度 题解:对于数...
Python3
2021-12-05
44
2969
题解 | #蛇形矩阵#
while True: try: n = int(input()) j = 1 l = [] for i in range(n): l.append(i+j) j += i for row in l: x = [] fo...
Python3
2021-12-03
0
318
首页
上一页
1
2
3
下一页
末页