题解 1311: 数字三角形

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

筛选

P1044 (C++代码)

摘要:解题思路:数塔问题,简单的动态规划。参考代码:#include <bits/stdc++.h> using namespace std;  const int N=26;  int main()……

P1044 (C++代码)

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

P1044 (C语言代码)

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

P1044 (C++代码)

摘要:解题思路:动态规划注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[100][100]; ……