题解列表
蓝桥杯2022年第十三届省赛真题-刷题统计(普通判断)
摘要:# 代码说明
**1018的长度在longlong范围内,在int类型的范围外**
```cpp
#include
using namespace std;
typedef long……
题解:装箱问题【Python求解】
摘要:解题思路:递归参考代码:## 递归算法
V = int(input())
n = int(input())
v_lis = []
for i in range(n):
v =……
蓝桥杯2022年第十三届省赛真题-修剪灌木
摘要:```c
#include
int main()
{
int a;
while(~scanf("%d", &a))
for(int i=1;ii-1?a-i:i-1……
题解: 公交汽车【Python】
摘要:解题思路:动态规划。参考代码:cost = list(map(int, input().split()))
n = int(input())
dp = [0 for i in range(n)]
……
题解: 数字三角形【Python】
摘要:解题思路:动态规划参考代码:N = int(input())
dp = []
for i in range(N):
row = list(map(int, input().split()……
二维数组右上左下遍历
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i,j,k; scanf("%d %d",&m,&n); int a[m][n……
C语言 最小绝对值&
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#define LONG 10int main(){ int nums[LONG] ……