P1044 (C++代码) 摘要:解题思路:数塔问题,简单的动态规划。参考代码:#include <bits/stdc++.h> using namespace std; const int N=26; int main()…… 题解列表 2019年02月18日 1 点赞 0 评论 475 浏览 评分: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<stdio.h>int a[26][26];int s[26];int main(){ int i,j,n; scanf("%d",&n); for(i…… 题解列表 2018年02月13日 0 点赞 0 评论 1114 浏览 评分:6.0
P1044 (C++代码) 摘要:解题思路:动态规划注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[100][100]; …… 题解列表 2017年11月12日 0 点赞 0 评论 861 浏览 评分:0.0