题解 1177: 三角形

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

筛选

三角形 (C++代码)

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

三角形 (C++代码)

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

三角形 (C语言代码)

摘要:解题思路:数塔问题。从倒数第二行开始求当前行对应位置与下一行对应位置的两个数最大值之和,一直到第一行,则第一个就是所求数据。参考代码:#include <stdio.h> #include <mat……

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

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

三角形 (C++代码)

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

三角形 (C语言代码)

摘要:解题思路:从倒数第三行最后往前算,记住每一次当前行和下一行可加的数的和,取最大后就可以。注意事项:参考代码:#include <stdio.h>#include <math.h>int max(int……

三角形 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,n,i,j,a[100][100]; scanf("%d",&t); while(t--) {  s……