1311: 数字三角形 通过递归函数dfs来进行深度优先搜索 摘要:解题思路:代码中定义了一个二维数组dp来存储三角形的数值。然后,通过递归函数dfs来进行深度优先搜索。函数中的参数p1表示当前所在的行数,p2表示当前所在的列数,sum表示当前路径的和。在递归函数中,…… 题解列表 2024年04月08日 0 点赞 0 评论 294 浏览 评分:9.9
1311: 数字三角形 摘要:```cpp #include using namespace std; int a[100][100],n; int f(int i,int j) { if(i==n) …… 题解列表 2023年05月03日 0 点赞 0 评论 229 浏览 评分:9.9
数字三角形 摘要:解题思路:DFS注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a[30][30],ans = -1;void dfs(int …… 题解列表 2022年08月13日 0 点赞 0 评论 333 浏览 评分:9.9
P1044 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n; scanf("%d",&n); int m[n][n]; …… 题解列表 2018年02月23日 9 点赞 0 评论 916 浏览 评分:0.0
P1044 (C++代码) 摘要:解题思路:动态规划注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[100][100]; …… 题解列表 2017年11月12日 0 点赞 0 评论 861 浏览 评分:0.0