题解 1177: 三角形

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

筛选

1177: 三角形

摘要:解题思路:注意事项:参考代码:t = int(input())for x in range(t):    n = int(input())    l = []    l = [ list(map(in……

题解 1177: 三角形

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { /**  * @param args  */ pub……

动态规划 路径问题

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int T,N,A[100][100],B[100][100]……

三角形 简单dp练习

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){     // 定义变量n和t,分别表示测试用例的数……

题解 1177: 三角形 C++

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int N = 110; int q[N][N],f[N][N]; i……