题解列表

筛选

输出格式的调整

摘要:1.除法的输出格式需要设置输出一位有效数字,用.1g表示2.前缀“+”表示在正数前面显示符号+,在负数前面显示符号-参考代码:#include<stdio.h> int main() { do……

参考01背包

摘要:解题思路:容量换成甜度注意事项:只有一个值(甜度),只需要算对应格参考代码:#include<stdio.h>int main(){    int n,dp[100]={0},a,v;    scan……

移动路线(Python)

摘要:解题思路:注意事项:参考代码:def countRoutes(m, n):    dp = [[0] * (n+1) for _ in range(m+1)]    # 初始化边界条件    for ……

编写题解 2794: 求平均年龄

摘要:解题思路:注意事项:需要注意多行输入的单行输入的情况参考代码:list1 = list(map(int,input().rsplit()))n = list1[0]list1.pop(0)while ……

编写题解 2796: 求整数的和与均值

摘要:解题思路:注意事项:  此题需要考虑一行输入和多行输入的情况参考代码:list1 = list(map(int,input().rsplit()))n = list1[0]list1.pop(0)wh……

超级楼梯(Python)

摘要:解题思路:注意事项:参考代码:def super_stair_ways(m):    dp = [0] * (m + 1)    dp[1] = 1    for i in range(2, m + ……

大数据因子 带解题思路

摘要:解题思路:注意事项:参考代码:c = int(input())                       #输入数据k = [2, 3, 4, 5, 6, 7, 8, 9]         #定义K……