由买买提看人间百态

topics

全部话题 - 话题: triangle
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
S*****J
发帖数: 18
1
int triangle(vector> &triangle)
{
for(int i=triangle.size()-2; i>=0; i--)
{
for(int j=0; j triangle[i][j]+=std::min(triangle[i+1][j], triangle[i+1][j+1]);
}

return triangle.empty()? 0 : triangle[0][0];
}
m*****n
发帖数: 2152
2
3x,受到启发,已经通过了,为了省时间,把你的循环里的不必要的if去掉了。
class Solution {
public:
int minimumTotal(vector > &triangle) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int depth = triangle.size();
if(!depth) return 0;
else if(depth==1) return triangle[0][0];
vector curr_min(depth, 0), pre_min(depth,0);
pre_min[0] = triangle[0][0];
for(int i=1; i {
curr_min[0] = pre_min... 阅读全帖
j******i
发帖数: 244
3
设从(0, 0)到(i, j)的最小和为P(i, j)
P(i, j) = min(P(i - 1, j), P(i - 1, j - 1)) + triangle[i][j] (除了边界上的
点)
这样知道上一行的P值,就可以推出下一行的P值,找出最后一行P值的最小值返回即可。
时间O(n^2),空间O(n)
class Solution {
public:
int minimumTotal(vector > &triangle) {
int n = triangle.size();
int * p = new int[n]();
int * q = new int[n]();
for (int i = 0; i < n; ++i) {
p[0] = q[0] + triangle[i][0];
for (int j = 1; j < i + 1; ++j) {
if (j == i)
... 阅读全帖
A****h
发帖数: 385
4
来自主题: Carolinas版 - best Triangle restaurants for 2015
http://www.newsobserver.com/2015/01/29/4511518_2015-best-restau
We find the best Triangle restaurants for 2015
By Greg Cox
January 29, 2015
Every year, as I’m rereading old reviews and previous editions of my annual
Best Restaurants roundup in preparation for this year’s list, it feels
like I’m looking at old family photo albums. My, what a difference a few
years make.
Back in the ’90s, the local dining scene was a precocious toddler with a
handful of talented young chefs and a more diverse asso... 阅读全帖
b*****d
发帖数: 61690
5
In a letter released by Republicans on the Senate Judiciary Committee,
Delancey Davis, Bernard McCarthy Jr., Paul Murray and Matthew Quinn said the
game was a variation on quarters.
"When we played 'Devil’s Triangle,' four people sat at a table. On the
table, three small glasses of beer were arranged next to one another to form
a triangle. Each of the four participants took turns being the “shooter,"
they wrote. "The shooter attempted to bounce a quarter into one of the
glasses. If the quarter l... 阅读全帖
b*****h
发帖数: 3386
6
来自主题: _pennystock版 - 如何做Swing trade (3) - Ascending Triangle
【 以下文字转载自 Stock 讨论区 】
发信人: lyrist (我是捂大的), 信区: Stock
标 题: 如何做Swing trade (3) - Ascending Triangle
发信站: BBS 未名空间站 (Sun May 31 19:58:25 2009)
我们青蛙们最关心的事情是如何得到一个好pick,与其等着大牛给pick,不如自己动手
来找。
我个人在买卖股票,设置stop的时候基本只看trend, support/resistence and volume
这些东西,但在scan股票的时
候,这些咚咚不好直接定义,所以必须借助一些technical indicators。 所以, 在筛
选股票之前,我们必须了解一些基
本的technical indicators。对于筛选股票常用的technical indicators大概分为下面
几类:
1. Money flow:
大家在看蜡烛图的量的时候,会很直观的感觉,如果一段时间绿柱柱比红柱柱多,而且
高,这说明有更多的demand, 当
demand大于supply, 股价就会上涨(跟街上买白菜是一个道理... 阅读全帖
s********e
发帖数: 1503
7
猪党觉得是啥呢?

:In a letter released by Republicans on the Senate Judiciary Committee,
:Delancey Davis, Bernard McCarthy Jr., Paul Murray and Matthew Quinn said
the game was a variation on quarters.
:"When we played 'Devil’s Triangle,' four people sat at a
table. On the
:table, three small glasses of beer were arranged next to one another to
form a triangle. Each of the four participants took turns being the “
shooter," they wrote. "The shooter attempted to bounce a quarter
into one of the
:glasses. ... 阅读全帖
v***v
发帖数: 5504
8
总结
星期五 5:00 pm ~ 10:00 pm
星期六 9:00 am ~ 10:00 pm
========================================================
Please join us for our Grand Opening
Triangle Table Tennis is opening at 4:30 PM on Friday, May 30th
2900 Perimeter Park Drive | Suite 200 | Morrisville, NC 27560
Overflow parking is available at 2000 Perimeter Park Drive, and shuttle
service is provided to and from Triangle Table Tennis from 4:00 – 10:00 pm
on Friday, May 30th
Our ribbon-cutting ceremony will last from 4:45 to 5... 阅读全帖
c**l
发帖数: 9003
9
Local Table Tennis Community,
Triangle Table Tennis, the new, dedicated Table Tennis Center conveniently
located in the middle of the Research Triangle, is getting ready to open
soon!
We are working hard to prepare for our Center’s Grand Opening on the last
weekend in May, to coincide with the arrival of our Head Coach, Fei-Ming
Tong.
In the meantime, we are pleased to offer several free Open-Play
opportunities prior to our Grand Opening. Although we’ll still be
implementing some of our plan... 阅读全帖
y****n
发帖数: 3184
10
诺兰和林奇的片子表拿来比了
这两部都是神作
triangle怎么可能和这两部来比。。。
triangle算是中等偏上的惊悚片而已
不过如果你的世界里除了神作就是烂片
那我尊重你叫它烂片
dead end和triangle怎么可能是一种题材。。。。
dead end 是濒死经历,而且根本没有循环经历
难道你觉得它是一条路一直开不完就是循环?
The I Inside没看过
有一点相似的是土拨鼠日
不过那是永远的一天,但每天主人公经历不同,而周遭世界相同
另外一个相似的是西班牙电影time crime
时间旅行中出现的好几个自己,互相杀来杀去
当然时间旅行的电影如果不是平行宇宙假设
或多或少都会有因果律的漏洞
Primer也有这样的影子
但是这样的题材绝对没到比比皆是的程度
而triangle做了一次有意思的尝试
整片用一个大的循环包裹起来
还是很有趣的

片?
p****o
发帖数: 46
11
来自主题: JobHunting版 - leetcode 的 triangle 一题 oj 怎么不过
41 / 43 test cases passed.
Status: Wrong Answer

Input: [[-9],[-8,0],[-3,2,5],[6,3,0,-4],[-2,-9,-5,-8,6],[0,-5,0,-2,-1,5]
,[0,6,-1,-5,-8,6,-5],[-8,-5,-9,-8,-4,-3,-5,7]]
Output: -1217805963
Expected: -41
code:
class Solution {
public:
int minimumTotal(vector > &triangle) {
// Start typing your C/C++ solution below
// DO NOT write int main() function

int n = triangle.size();
vector vmin(n, 0);
while (n--){
... 阅读全帖
G*********2
发帖数: 208
12
我在银行做数据分析, strategy development and analytics工作, 有大概5年工作
经验。
老公在北卡research triangle的工作机会还比较多, 在考虑relocate 到那边工作。
我在indeed上看有好多银行业的analytics工作在Charlotte,但是在research
triangle附近没怎么看到。 希望在research triangle附近工作的同胞们有知道的说说
看。
谢谢
G*********2
发帖数: 208
13
我在银行做数据分析, strategy development and analytics工作, 有大概5年工作
经验。
老公在北卡research triangle的工作机会还比较多, 在考虑relocate 到那边工作。
我在indeed上看有好多银行业的analytics工作在Charlotte,但是在research
triangle附近没怎么看到。 希望在research triangle附近工作的同胞们有知道的说说
看。
谢谢
G*********2
发帖数: 208
14
我在银行做数据分析, strategy development and analytics工作, 有大概5年工作
经验。
老公在北卡research triangle的工作机会还比较多, 在考虑relocate 到那边工作。
我在indeed上看有好多银行业的analytics工作在Charlotte,但是在research
triangle附近没怎么看到。 希望在research triangle附近工作的同胞们有知道的说说
看。
谢谢
f*********n
发帖数: 11154
15
【 以下文字转载自 Carolinas 讨论区 】
发信人: friediceman (Bing), 信区: Carolinas
标 题: 这世界变味了,Gun sales up in Triangle
发信站: BBS 未名空间站 (Wed Oct 8 18:53:58 2008)
虽然经济乱套了,也不至于如以下新闻故事这样吧:
http://www.wral.com/news/local/story/3698622/
Gun sales up in Triangle
Posted: Today at 4:10 p.m.
Raleigh, N.C. — Some Triangle shop owners report a steady increase in gun
sales, which they credit to the struggling national economy.
This year so far, sales at the Personal Defense and Handgun Safety Center in
Raleigh are up about
p********a
发帖数: 5352
16
☆─────────────────────────────────────☆
Flyyingbird (bird) 于 (Fri Mar 23 10:27:11 2007) 提到:
有谁知道北卡的 research triangle park好找master level的 statistics工作吗?
Any information is greatly apprecited! Thanks!
☆─────────────────────────────────────☆
dfbb (东方不败) 于 (Fri Mar 23 10:53:28 2007) 提到:
For stat jobs, NC Triangle is right after NJ and Philly. In terms of stat/
biostat, no other places can beat NC Triangle. UNC, Duke, NCSU all have very
good stat/biostat programs. A lot of pharm/bio compan

发帖数: 1
17
【 以下文字转载自 USANews 讨论区 】
发信人: dalihe103 (dalihe103), 信区: USANews
标 题: 语他装什么傻啊 为什么撒谎说什么devil triangle是喝酒游戏 以为大家都是傻子?这种人渣也
发信站: BBS 未名空间站 (Tue Oct 2 21:30:12 2018, 美东)
语他装什么傻啊 为什么撒谎说什么devil triangle是喝酒游戏 以为大家都是傻子?这
种人渣也配当最高法官?

发帖数: 1
18
【 以下文字转载自 USANews 讨论区 】
发信人: dalihe103 (dalihe103), 信区: USANews
标 题: 语他装什么傻啊 为什么撒谎说什么devil triangle是喝酒游戏 以为大家都是傻子?这种人渣也
发信站: BBS 未名空间站 (Tue Oct 2 21:30:12 2018, 美东)
语他装什么傻啊 为什么撒谎说什么devil triangle是喝酒游戏 以为大家都是傻子?这
种人渣也配当最高法官?
l*y
发帖数: 21010
19
【 以下文字转载自 Military 讨论区 】
发信人: ldy (大才001), 信区: Military
标 题: devil's triangle是什么都敢撒谎?以为google不存在?以为大家都是傻子?这大法官完蛋了。
发信站: BBS 未名空间站 (Thu Sep 27 17:19:56 2018, 美东)
devil's triangle是什么都敢撒谎?以为google不存在?以为大家都是傻子?这大法官
完蛋了。
j**7
发帖数: 143
20
http://www.yodlecareers.com/puzzles/triangle.html
我的答案不对 (665321)。
public static void main(String[] args) {
// TODO Auto-generated method stub

File file = new File("triangle.txt");
try
{
BufferedReader in = new BufferedReader(new FileReader(file));
String line;
int value=Integer.parseInt(in.readLine().trim());
int index=0;

while ((line = in.readLine()) != nul... 阅读全帖
l***i
发帖数: 1309
21
I did triangle 3 years ago and immediately got an email from them. Sadly
they do not hire interns ...
The answer to triangle can be found in yahoo answer.
r*****w
发帖数: 44
22
【 以下文字转载自 Working 讨论区 】
发信人: realnew (new), 信区: Working
标 题: 求教 New Jersey 和 Triangle NC 二选一
发信站: BBS 未名空间站 (Mon Aug 4 10:17:09 2014, 美东)
拿到2个类似行业的offer,工资差不多。不过NC的这个需要在中部工作6-12个月后才能
relocate到 triangle
另外需要考虑到LG也正在找工作中,可以找科技仪器设备,材料分析,半导体方面的,
不知道哪个地方机会可能会多一点,多谢各位的建议了。
u********e
发帖数: 4950
23
As attached, the market has just formed a symmetrical triangles in the past
couple of days.
Usually the symmetrical triangle is a technical "trend continuation" pattern
( i.e., 9 out 10, the breakout will occur in the directing of the existing
trend), but this time might be different. We will see it soon.
R*s
发帖数: 2041
24
来自主题: Carolinas版 - Triangle 中餐馆(4)
Chapel Hill
不熟,就知道两家,一家555,老牌中餐buffet, 可以吃,
没啥海鲜或者特别的东东。另一家湖南,不吃也罢。
Raleigh
应该有很多家,不过state的同学们应该了解得更清楚。
偶只知道出名的几家。
Fortune Palace 天福楼
440北环下到capital blvd. 往北三个灯后右转。Grocery 旁边。
雄居Triangle中餐老大地位已久。每次去都冷清清的居然也
生存至今。去年更换老板为马来西亚人。菜说不出是哪的口味,
但做得确实还不错。无锡小排,五更怅惘,豆酥雪鱼,豆酥豆腐,
醉鸡等等菜单上有的大部分菜都值得尝试。价格不低。当然好象
水平也呈下降趋势。著名老ID小同学billy就指出过无锡小排从
最初的8跟降到后来的6-7根。。。。
红楼烤鸭。
440东环下到64往东,第二个红绿灯左传再左传。
triangle还能有这么个吃烤鸭的地方。不容易。味道正不正宗单论,
但绝对可以做调换口味之用。20几快一只鸭一鸭三吃,包饼,鸭架汤,
豆芽抄鸭肉,3-4人吃正好。缺点是饼经常不够,面酱太甜。
其他点菜大都一般,一个酸菜鱼片?和霉菜扣肉还不错。
n****y
发帖数: 160
25
关于Triangle Town Center(Raleigh)问题请教:
请问住在Raleigh市的朋友,哪位比较熟悉Triangle Town Center?
请问那里规模如何、人气可旺、有哪些著名商家?想在那里面开店,谢了先!
x*******c
发帖数: 259
26
马上要去北卡继续学业, 女友在research triangle park工作。
想找一个在这两地之间的公寓(离research triangle park要稍近一些), 请大家推
荐一个。
希望能稍微安全, 中国人 稍多的地方
r*****w
发帖数: 44
27
【 以下文字转载自 Working 讨论区 】
发信人: realnew (new), 信区: Working
标 题: 求教 New Jersey 和 Triangle NC 二选一
发信站: BBS 未名空间站 (Mon Aug 4 10:17:09 2014, 美东)
拿到2个类似行业的offer,工资差不多。不过NC的这个需要在中部工作6-12个月后才能
relocate到 triangle
另外需要考虑到LG也正在找工作中,可以找科技仪器设备,材料分析,半导体方面的,
不知道哪个地方机会可能会多一点,多谢各位的建议了。
r*****w
发帖数: 44
28
【 以下文字转载自 Working 讨论区 】
发信人: realnew (new), 信区: Working
标 题: 求教 New Jersey 和 Triangle NC 二选一
发信站: BBS 未名空间站 (Mon Aug 4 10:17:09 2014, 美东)
拿到2个类似行业的offer,工资差不多。不过NC的这个需要在中部工作6-12个月后才能
relocate到 triangle
另外需要考虑到LG也正在找工作中,可以找科技仪器设备,材料分析,半导体方面的,
不知道哪个地方机会可能会多一点,多谢各位的建议了。
i******o
发帖数: 6843
29
ID:
iToldUso
歌名:
Bizarre Love Triangle (Frente!
翻唱说明:
额,我以前竟然没在买买提发过这首歌的呀?可见质量确实太差,一直没过安检的说。
。。
应pious同学点歌而发~~这是我三年前录的,不管是人声还是后期质量都无保障。节奏
错误比较多比较明显。。。凑合
着听吧。。。|||
歌曲链接:
http://ge.tt/48QBitE/v/96
曲作者:
词作者:
原唱:
Frente!
歌词:
Bizarre Love Triangle
by Frente!
every time i think of you
i get a shock right through into a bolt of blue
it's no problem with mine but it's a problem i find
living a life that i can't leave behind
there's no sense in telling me
the wisdom of a fool won't set you free
but that'... 阅读全帖
l********r
发帖数: 175
30
【 以下文字转载自 TeX 讨论区 】
发信人: lilyflower (smile), 信区: TeX
标 题: how to input left side triangle in word?
发信站: BBS 未名空间站 (Sun Aug 31 20:57:15 2008)
How to input left side triangle in word? I could not find it in inert-->
symbol or similar menu. Thanks a lot.
l********r
发帖数: 175
31
【 以下文字转载自 TeX 讨论区 】
发信人: lilyflower (smile), 信区: TeX
标 题: how to input left side triangle in word?
发信站: BBS 未名空间站 (Sun Aug 31 20:57:15 2008)
How to input left side triangle in word? I could not find it in inert-->
symbol or similar menu. Thanks a lot.
l*y
发帖数: 21010
32
devil's triangle是什么都敢撒谎?以为google不存在?以为大家都是傻子?这大法官
完蛋了。
b********n
发帖数: 38600
33
devil triangle 是三p,老大爷是专家
s********t
发帖数: 930
34
【 以下文字转载自 USANews 讨论区 】
发信人: starlightt (星光大姐大), 信区: USANews
标 题: kavanaugh高兴了,晚上和两个女儿devil triangle
发信站: BBS 未名空间站 (Fri Oct 5 21:36:12 2018, 美东)
喝几杯

发帖数: 1
35
语他装什么傻啊 为什么撒谎说什么devil triangle是喝酒游戏 以为大家都是傻子?这
种人渣也配当最高法官?
S*********g
发帖数: 24893
36
这个大法官非常亲民,boof,devil triangle,样样精通
还喜欢puke
b******o
发帖数: 19
37
I'm looking to buy a used car around Research Triangle Park in North
Carolina. I got tired of looking at and comparing cars from different sites
, so I wrote a program to automatically scan several sites and list results
in one page. If you happen to have similar needs, check out:
http://www.techworldconnect.com/portal/portal/default/Used+Cars
I can add other popular areas or models to scan if there are enough requests.
Enjoy.
C****A
发帖数: 1358
38
小海马$12
动物夜灯$10
play triangle $10
全新 有原包装
还有一些其他的小玩具例如play puppy等,见图片
rain forest gym$30, like new
mobile$15 like new
g**s
发帖数: 76
39
本人 一般学校的CS 的 master,快毕业了,以前有些经验,收到在NC research
triangle 附近的offer,公司凑合吧,salary 70k,+些许signin +未知bonus。
在NC那边,这工资算什么水平,相当于NYC的多少呢,相当于Seattle多少呢?
犹豫~
P******r
发帖数: 842
40
来自主题: JobHunting版 - Leetcode triangle 题目clarification
Given a triangle, find the minimum path sum from top to bottom. Each step
you may move to adjacent numbers on the row below.
这个adjacent numbers是不是i和i+1(pass oj)。要是做i-1,i,i+1不pass。
d*******3
发帖数: 58
41

我试了下,是732506,这题不就是leetcode triangle那题么
j**7
发帖数: 143
42
结果:732506
public static void main(String[] args) {
// TODO Auto-generated method stub
File file = new File("triangle.txt");
try
{
BufferedReader in = new BufferedReader(new FileReader(file));
String line;

List list=new ArrayList();

while ((line = in.readLine()) != null) {

String [] temp=line.split("[ ]");
... 阅读全帖
m*****n
发帖数: 2152
43
写了一个程序,但是系统总是用它算160+阶的triangle,然后显示Time Limit
Exceeded。
反复修改了,实在没办法再省时间了,而且还要求内存空间O(n).
请问,有人的程序能通过吗?
这是第一次在上面练习,不知道怎么算通过。
a***e
发帖数: 413
44
来自主题: JobHunting版 - 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 use only O(k) extra space?
对下面这种优化解总觉得不是很清楚。感觉如果不是自己想出来的东西下次又会忘,有
没有同学解释下原理?为啥内循环要从右忘左扫?多谢!
vector getRow(int rowIndex) {
vector res;
if (rowIndex<0) return res;

res.resize(rowIndex+1);
res[0]=1;

for (int i=1; i {
for (int j=i; j>=1; j-... 阅读全帖
a***e
发帖数: 413
45
来自主题: JobHunting版 - Pascal's Triangle II 的优化解?
早跑过了。
但这个最初是怎么想出来的?Pascal's Triangle 像下面这样写,很简单,但怎么能够
想到从右到左扫来优化?
class Solution {
public:
vector > generate(int numRows) {
vector> res;
if (numRows==0) return res;

vector curRow;
curRow.push_back(1);
res.push_back(curRow);

for (int i=1; i {
vector prevRow=curRow;
curRow.clear();

for (int j=0; j ... 阅读全帖
t**r
发帖数: 3428
46
说实话Pascal's Triangle这题目要是没做过 电面写
15分鐘写出bug free,简洁的代码并不容易。
很容易就写30。40行。
T*********s
发帖数: 17839
47
来自主题: Stock版 - triangle almost broken
it looks everybody looked at the triangle :)
T*********s
发帖数: 17839
48
来自主题: Stock版 - end of triangle
see, i'm wrong :)
the triangle is broken up
u********e
发帖数: 4950
49
My view is a little bit biased to the bearish side and am preparing for the
breaking downs
But Fed might be able to keep pumping the market up so that we could see
more triangles untill June
N*****d
发帖数: 9872
50
佩服油工一下
Recognia has detected a "Symmetrical Continuation Triangle (Bearish)" chart
pattern formed on J C Penney Company Inc (JCP on NYSE). This bearish signal
indicates that the price may fall from the close of 8.19 to the range of 3.
80 - 4.60. The pattern formed over 55 days which is roughly the period of
time in which the target price range may be achieved.
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)