pyhton选择排序解法 带注释 摘要:n=int(input().strip())X=list(map(int,input().split()))# print(X)for i in range(n): k=i #记录最小的值的下标…… 题解列表 2023年02月08日 0 点赞 0 评论 375 浏览 评分:0.0
c++兰顿蚂蚁简单思路 摘要:```cpp #include #include using namespace std; const int N = 105; int g[N][N]; int n,m,x,y,k…… 题解列表 2023年02月08日 0 点赞 0 评论 397 浏览 评分:0.0
使用俩个for循环 摘要:解题思路:注意奇数是从1开始偶数从2开始注意事项:参考代码:#include<stdio.h>int main(){ int N,Sum1=0,Sum2=0; scanf("%d",&N)…… 题解列表 2023年02月08日 0 点赞 0 评论 362 浏览 评分:0.0
用for循环迭代求平方根!思路超简单! 摘要:解题思路:设定迭代初值为1,只要满足收敛的数都可。利用数组存储第一个元素为初值,再写出迭代公式,满足精度则跳出循环。注意事项:C语言的绝对值函数是fabs,一直记得是matlab的abs,导致一直没检…… 题解列表 2023年02月08日 0 点赞 0 评论 418 浏览 评分:0.0
python DFS解法 摘要:v,w=map(int,input().split())pvw=[]for i in range(5): pvw.append([int(_) for _ in input().split()]…… 题解列表 2023年02月08日 0 点赞 0 评论 400 浏览 评分:0.0
数字三角形模型 摘要:## 数字三角形模型 ### 注意事项 1.注意边界问题,第一行和第一列只有一个方向能过来。 2.题目中说的(2N - 1)其实是限制了走的方向。 #### 代码 ``` #i…… 题解列表 2023年02月08日 0 点赞 0 评论 514 浏览 评分:0.0
数字三角形模型 摘要:# 数字三角形模型原题 ## 动态规划 1.二维状态表示,f[i][j]表示走到(i,j)(包括)时的最大路径权值。 2.状态转移可由f[i - 1][j - 1]和f[i][j - 1]得…… 题解列表 2023年02月08日 0 点赞 0 评论 495 浏览 评分:0.0
分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x, y; scanf("%d", &x); if (x < 1) { y = x; …… 题解列表 2023年02月08日 0 点赞 0 评论 222 浏览 评分:0.0
自定义函数之数字分离(so easy) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num; scanf("%d", &num); int a = num / 1000; int b = …… 题解列表 2023年02月08日 0 点赞 0 评论 316 浏览 评分:0.0
Python解决登陆验证问题 摘要:解题思路:注意事项:运用字典来解决参考代码:dict={'dotcpp':'123456'}m=input()n=input()if m in dict and dic…… 题解列表 2023年02月09日 0 点赞 0 评论 336 浏览 评分:0.0