problem 976. Largest Perimeter Triangle solution: 参考 1. Leetcode_easy_976. Largest Perimeter Triangle; 完 ...
分类:
其他好文 时间:
2019-08-07 19:33:51
阅读次数:
86
题意 给出一个n位序列 a 有m个询问 l r 问在al -ar 之间能选取的最大周长的三角形 比赛的时候 用莫队算法 但是一直超时 (感觉时间复杂度不是特别高呀。。。) 可以用主席树遍历区间最大到最小来找三角形 #include<bits/stdc++.h> using namespace std ...
分类:
其他好文 时间:
2019-07-25 00:34:13
阅读次数:
95
A. Another Chess Problem B. Beauty Of Unimodal Sequence C. Coefficient D. Double Tree E. Everything Is Generated In Equal Probability F. Fantastic Mag ...
分类:
其他好文 时间:
2019-07-24 19:33:36
阅读次数:
155
Love Triangle Descriptions: 正如你所知道的,没有男性飞机也没有女性飞机。然而,地球上的每一个平面都喜欢另一个平面。地球上有n个平面,编号从1到n,编号i的平面喜欢编号fi的平面,其中1≤fi≤n且fi≠i。 我们把平面A喜欢平面B,平面B喜欢平面C,平面C喜欢平面a的情况 ...
分类:
其他好文 时间:
2019-07-21 18:13:58
阅读次数:
89
Description 73 88 1 02 7 4 44 5 2 6 5(Figure 1) Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on ...
分类:
其他好文 时间:
2019-07-17 20:33:56
阅读次数:
96
Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two numbers ...
分类:
其他好文 时间:
2019-07-14 23:51:04
阅读次数:
162
判断三角形形状 题目描述 给你三角形的三条边,你能告诉我它是哪种三角形吗?如果是直角三角形,请输出“good”。如果是等腰三角形,请输出“perfect”。否则,请输出“just a triangle”。题目保证输入数据合法。 输入 输入的第一行为一个整数t,表示测试样例的数量。每组样例包含了三个整 ...
分类:
其他好文 时间:
2019-06-29 18:55:27
阅读次数:
284
题意 平面上有$n$个点$A_i$,$q$次询问,每次给出一个点$P$,求: $$ \sum_{i=L}^{R} 2S_{\triangle OPA_i} $$ 最大值,其中$S_{\triangle_{ABC}} \ = \ \frac{\vec{AB}\times\vec{AC} }{2} $为 ...
分类:
其他好文 时间:
2019-06-23 22:51:47
阅读次数:
114
Problem 42 https://projecteuler.net/problem=42 The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangle n ...
分类:
其他好文 时间:
2019-06-16 13:36:00
阅读次数:
92