码迷,mamicode.com
首页 >  
搜索关键字:triangle    ( 1341个结果
Dynamic programming--triangle splitting
weight_polygon = [ [0, 2, 2, 3, 1, 4], [2, 0, 1, 5, 2, 3], [2, 1, 0, 2, 1, 4], [3, 5, 2, 0, 6, 2], [1, 2, 1, 6, 0, 1], [4, 3, 4, 2, 1, 0]] polygon_spl ...
分类:其他好文   时间:2016-05-04 21:09:27    阅读次数:129
hdu 5675 ztr loves math(数学技巧)
Problem Description ztr loves research Math.One day,He thought about the "Lower Edition" of triangle equation set.Such as n=x2?y2. He wanted to know t ...
分类:其他好文   时间:2016-05-02 18:41:26    阅读次数:130
118. 119. Pascal's Triangle -- 杨辉三角形
118. Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return 119. Given an index k, return the kth row o ...
分类:其他好文   时间:2016-05-01 11:03:08    阅读次数:184
Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Pascal's Triangle为给出行数,求所有结果,这题是给出任意行号,求该行的结 ...
分类:其他好文   时间:2016-04-30 16:53:14    阅读次数:239
Pascal's Triangle
Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return 简单题,不过却有解法上还是有多种的。首先给出我简单直接的解法: 主要就是每行处理,将开始的1和最 ...
分类:其他好文   时间:2016-04-30 16:49:18    阅读次数:183
纯 CSS 绘制三角形(各种角度)
Triangle Up Triangle Up Triangle Up 1 2 3 4 5 6 7 #triangle-up { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid tr ...
分类:Web程序   时间:2016-04-26 15:57:06    阅读次数:149
CodeForces - 407A
Triangle Time Limit: 1000MS Memory Limit: 262144KB 64bit IO Format: %I64d & %I64u Submit Status Description There is a right triangle with legs of len ...
分类:其他好文   时间:2016-04-23 19:37:04    阅读次数:233
Triangle(DP)
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:其他好文   时间:2016-04-18 10:10:29    阅读次数:151
119. Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to us ...
分类:其他好文   时间:2016-04-12 23:53:06    阅读次数:225
1341条   上一页 1 ... 60 61 62 63 64 ... 135 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!