题解列表
编写题解 2836: 数组逆序重放
摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input())
nums=list(map(int,input().split())) #打包为整型数组
for i in n……
编写题解 2835: 计算书费
摘要:解题思路:注意事项:参考代码:price=[28.9,32.7,45.6,78,35,86.2,27.8,43,56,65] #将价格储存进数组
nums=list(map(int,input().……
dp,讲述一些经验和细节注意
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//最大上升子序列的问题,O(n^2)算法轻松解决//这种题用不了O(nlogn)的二分算法,因为存在两个元素无法比较的现象……
编写题解 1098: 陶陶摘苹果
摘要:解题思路:定义count指针计数注意事项:参考代码:h1=list(map(int,input().split())) #苹果到地面高度,打包为整型数组
h2=int(input()) #陶陶把手伸……
编写题解 2834: 与指定数字相同的数的个数
摘要:解题思路:定义count计数器注意事项:参考代码:n=int(input())
nums=list(map(int,input().split())) #打包为整型数组
m=int(input()……