题目链接: "Kattis largesttriangle" Description Given $N$ points on a $2$ dimensional space, determine the area of the largest triangle that can be formed ...
分类:
其他好文 时间:
2019-10-06 00:52:11
阅读次数:
345
119. Pascal's Triangle II Easy Easy Easy Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the r ...
分类:
其他好文 时间:
2019-10-05 10:59:45
阅读次数:
95
118. Pascal's Triangle Easy Easy Easy Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, eac ...
分类:
其他好文 时间:
2019-10-04 09:34:23
阅读次数:
85
三个顶点均在椭圆上的三角形称为椭圆的内接三角形,已知点$A$是椭圆的一个短轴端点,如果以$A$为直角顶点的椭圆内接等腰直角三角形有且仅有三个,则椭圆的离心率的取值范围是$\underline{\qquad\qquad}$. 解析: $\triangle ABC$与椭圆如图所示,不妨设椭圆方程为$$ ...
分类:
其他好文 时间:
2019-10-03 21:56:25
阅读次数:
84
# 杨辉三角 def triangle(): li = [1] while True: yield li lis = [] lis.extend([li[0]]) for j in range(len(li)-1): lis.append((li[j]+li[j+1])) ... ...
分类:
其他好文 时间:
2019-10-03 12:58:57
阅读次数:
87
在面积为$1$的$\triangle ABC$中,$a,b,c$为角$A,B,C$所对的边,则$\dfrac{b^2(1+\cos A)(1+\cos C)}{1 \cos B}$的最小值为$\underline{\qquad\qquad}.$ 解析: 法一 $\qquad$记所求表达式为$M$,则 ...
分类:
其他好文 时间:
2019-10-01 09:47:42
阅读次数:
98
在等腰$\triangle ABC$中,角$A,B,C$所对的边分别为$a,b,c$,其中$B$为钝角,且$b $$\sqrt{3}a\sin A$$=b$$\cos 2A$,点$D$与点$B$在直线$AC$的两侧,且$CD=3AD=3$,则$\triangle BCD$的面积的最大值是$(\qqu ...
分类:
其他好文 时间:
2019-09-30 23:28:27
阅读次数:
149
1163:The Triangle 1163:The Triangle 查看 提交 统计 提示 提问 查看 提交 统计 提示 提问 总时间限制: 1000ms 内存限制: 65536kB描述 73 88 1 02 7 4 44 5 2 6 5(Figure 1) Figure 1 shows a n ...
分类:
编程语言 时间:
2019-09-30 00:12:07
阅读次数:
136
老张原话:"这套题比较切合noip难度";我笑了 数据为n define ll long long define il inline define ri register int using namespace std; const int maxn=1e5+5; int n,k,len; ll a ...
分类:
其他好文 时间:
2019-09-28 16:17:44
阅读次数:
120
在$\triangle ABC$中,角$A,B,C$所对的边分别是$a,b,c$,若$a$$=$$1$,且$BC$边上的高等于$\tan A$,则$\triangle ABC$ 的周长的取值范围为$\underline{\qquad\qquad}$. 解析: 由题,不妨设$c\geqslant b$ ...
分类:
其他好文 时间:
2019-09-28 09:16:27
阅读次数:
76