题解 1177: 三角形

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

三角形 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int n_max=100+5; int a[n_max][n_max]……

三角形 (C++代码)(DP)

摘要:#include <iostream> #include <stdio.h> #include <cstring> #include <algorithm> #include <cmath> ……

三角形 (C++代码)

摘要:解题思路:dp...注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #define N 100 using nam……

三角形 (C++代码)

摘要:解题思路:动态规划,贪心不能得到最大解注意事项:三维数组提高解题效率参考代码:#include<bits/stdc++.h> #define N 50  using namespace std; ……

三角形-题解(C++代码)动态规划详解

摘要:用一个二维数组存放数字三角形。 W(i,j)表示第i行j列的数字,dp[i][j]表示从第i行j列的数字到底边路径的最大和。 先以递归的方法入手,寻找状态转移方程。对N行三角形: if(i==n……
优质题解

三角形-题解(C++代码)

摘要:首先告诉大家什么时候用动规 动规解题的一般思路 1、将原问题分解为子问题 把原问题分解为若干个子问题,子问题和原问题形式相同或类似,只不过规模变小了。子问题都解决,原问题即解决(数字三角形例) ……

三角形-题解(C++代码)

摘要:```cpp #include using namespace std; int a[105][105] = {0}; int main() { int i, j, t = 0, n,……