由买买提看人间百态

topics

全部话题 - 话题: minprice
(共0页)
l**********3
发帖数: 161
1
第一题可不可以这么做,O(N)的方法,请大虾指教。
#include
using namespace std;
typedef struct best_days {
int buy;
int sell;
} best_days_t;
best_days_t get_best_days(double* prices, int days){
best_days_t best;
best.buy = best.sell = -1;

int minday = 0;
double dmax = 0.0f;
double minprice = prices[0];

for (int i=1; i if (prices[i] - minprice > dmax){
dmax = prices[i] - minprice;
best.sell = i;
best.buy = minda... 阅读全帖
j*****u
发帖数: 1133
2
1. 我一开始想成根据history的stock price来做predict了,想了半天。。。
其实是这个题的变种
int array A里找两个position i和j,要求A[j]和A[i]的差maximum,同时i static void BestDay(int[] stockPrices, out int buyDate, out int sellDate)
{
buyDate = sellDate = 0;
int maxDiff = 0, minPrice = stockPrices[0], minPriceDate = 0;
for (int i = 1; i < stockPrices.Length; ++i)
{
int price = stockPrices[i];
int diff = price - minPrice;
if (diff > maxDiff)
{
buyDate = minPriceDate;
s... 阅读全帖
w*******y
发帖数: 60932
3
You get 20% off and Free Ship on Womens Clothing (does NOT work on clearance
) at Target today.
Also code TGTTUY28 and TGT75HFN for additional discounts ***YOU NEED TO BE
LOGGED IN FOR IT TO APPLY*** Asylum!! (coupon may die at any time)
This pair of $15 jeans:
http://www.target.com/p/Mossimo-Supply-Co-Juniors-Bootcut-Jean-
takes off $10 on any other womens clothing item. I would probably
recommend sizing up, as junior fit is not as hippy as womens fit.
This pair of $15 jeans:
http://www.targ... 阅读全帖
w*******y
发帖数: 60932
4
Target has
Elder Scrolls V: Skyrim XBox or PS3:
http://www.target.com/s?searchTerm=Elder Scrolls V:Skyrim&category=0|All|matchallany|all categories#navigation=true&viewType=medium&sortBy=relevance&minPrice=from&maxPrice=to&isleaf=false&parentCategoryId=0&facetedValue=/-/N-5tdv0&RatingFacet=0
#navigation=true&viewType=medium&sortBy=relevance&minPrice=from&maxPrice=to&
isleaf=false&parentCategoryId=0&facetedValue=/-/N-5tdv0&RatingFacet=0" rel="
nofollow" target="_blank" onclick="_gaq.push(['_track... 阅读全帖
s**********e
发帖数: 97
5
来自主题: SanFrancisco版 - 新手买房求教
根据学校要求和房子的要求,你可以试试http://schoolandhousing.com/
比如你列的第一个option是小学,中学不错,高中一般,那你可以把找房子的条件设成
esAPI>900, msAPI>850, hsAPI>700.再设定房子的条件,然后查询(一开始为了全面,
你可以设定在Santa Clara county查询)。下面是结果。(从地图里比较容易看出
Cambrian有很多房子满足要求,同时Sunnyvale,Evergreen, Milpitas也都有一些。)
你也可以根据自己的要求调整条件,限定更细的区域。
http://schoolandhousing.com/findhomes.jsp?
esApi=900&msApi=850&hsApi=700&snhScore=1&minPrice=500000&maxPrice=700000
&minBed=3&bath=2&sqft=1250&sort=postdatenew&area=county&county=Santa+Cla
ra
对于你列的第二个option,只找高中好的,那你可以把高中的API设成8... 阅读全帖
w*******y
发帖数: 60932
6
Target.com has 4 different series of 16 piece Squinkies:
http://www.target.com/c/clearance-toys/-/N-5tg3d#navigation=tru
#navigation=true&viewType=medium&sortBy=bestselling&minPrice=from&maxPrice=
to&isleaf=true&navigationPath=5tg3d&parentCategoryId=9611722&facetedValue=/-
/N-5tg3dZ5qhir&RatingFacet=0" rel="nofollow" target="_blank" onclick="_gaq.
push(['_trackEvent', 'thread', 'click', '3818770 - squinkies-2.62-w-fs-w-
target-redcard']);">4 different series of 16 piece Squinkies [4 different
se... 阅读全帖
w*******y
发帖数: 60932
7
Target has many nice toys on sale starting from $4.98
Vtech princess learning pad:
http://www.target.com/p/VTech-Princess-Learning-Pad/-/A-1345083
$6.98(was 19.99)
LeapFrog tag bundle:
http://www.target.com/p/LeapFrog-Tag-Bundle-Green/-/A-13753621#
#?lnk=sc_qi_detailbutton" rel="nofollow" target="_blank" onclick="_gaq.push(
['_trackEvent', 'thread', 'click', '3883746 - target-toys-clearance-vtech-
princess-learning-pad-6.98was19.99-leap-frog-tag-bundle-24was-69.99-and-many
-more-starting-from-... 阅读全帖
z*********v
发帖数: 22
8
http://www.bmwofthewoodlands.com/VehicleSearchResults?series=X5 35d&maxMPG=2147483647&maxPrice=2147483647&minYear=2011&maxYear=2013&bodyType=SUV&minMPG=-2147483648&search=new&zipCode=&trim=AWD 4dr SUV&make=BMW&minPrice=35000&pageNumber=1&visitedVD=true
this dealer has quite a few x5 diesel
s******e
发帖数: 2181
9
来自主题: Automobile版 - 全新帕萨特2017只要1万3
http://www.alexandriavw.com/VehicleSearchResults?search=new&make=Volkswagen&model=Passat&bodyType=CAR&trim=&series=&minYear=&maxYear=&minPrice=&maxPrice=&vehicleType=
is offering passat S2017 for $13,859, which is $9,721 off from MSRP.觉得这个
可信吗?出门价应该只要1万5多一些
this dealership also offers jetta only asked for $9,859. 比韩国车还便宜了吧
j******0
发帖数: 1043
c*********7
发帖数: 7607
11
来自主题: ebiz版 - nokia trade in又来了 问个问题

http://store.nokia.com/webapp/wcs/stores/servlet/productdetailb
minPrice=-1&langId=-1&productId=10000605&maxPrice=-
1&orderBy=PriceH&catalogId=10101&deviceSelected=Y&prodPage=true&
familyPageURL=
familyPage&beginIndex=0&field1=1&storeId=10500&pageSize=8&productPageURL=
produ
ctdetailbymodel&PhByMod=Y&ddkey=http:GOSPOnlineStoreHomeDisplay&cid=estore-
fw-
afc-na-con-na-linkshare-us-19-AffiliateDeepLink&siteID=mPPYFpj1vek-
MpaY44i6XUtrmI46nvD58Q
in stock again
j*****u
发帖数: 1133
12
没有问题
minPriceDate总是
B******u
发帖数: 23763
13
take a look here.
http://www.sonystyle.com/webapp/wcs/stores/servlet/SearchCatalog?
storeId=10151&langId=-
1&catalogId=10551&Ntk=&Ntx=&Ntt=&N=4294966135&searchType=outlet&contentTyp
e=PRODUCT&No=&Nao=&rpp=15&Ns=Prod.Price.SS|0&Nf=&productFilter=&minPrice=&
maxPrice=&navigation=
m********g
发帖数: 692
14
咱俩可能说岔劈了, 感觉象小马过河的故事.
你给的地方比German Town还靠北乐, 到bethesda都30miles+乐,
在硅谷要舍得住这么远, 也有便宜房子(能不能搞到这么大不知道). 而且看了一下小学
, 算不上好校区吧.
查下面的link, 左下角, potomac river 附近(potomac 和 bethesda)你随便点个 single house, 看看年头和价格, 看你手气是不是比俺好.
..
http://www.homesdatabase.com/mapsearch.ds?where=20854&what=&propertyType=propertytype..%3D..^Residential%24..%26..Homes+for+Sale&numBeds=&numBaths=&lotSizes=&minPrice=&maxPrice=&mustHaves=&homeTypes=&homeStyles=&homeAges=&heatingTypes=&coolingTypes=&newSe
w********9
发帖数: 8613
15
https://www.aliexpress.com/premium/category/125.html?site=glo&tc=ppc&g=y&
isrefine=y
https://www.aliexpress.com/wholesale?minPrice=&maxPrice=&isBigSale=n&
isFreeShip=n&isNew=n&isFavorite=n&shipFromCountry=&shipCompanies=&SearchText
=+oil+bean&CatId=125&g=y&isPremium=y&needQuery=n&isrefine=y&tc=ppc
我通常是买homedepot的。基本都是有机种子。基本每次去都会买点。过去3年下来我共
买了70多份,几乎全都没被用完!
我刚刚在阿里巴巴买了39份种子在店里碰不到的。总共还不到10美元!基本上是这边价
格的10-15%的样子。我这是第一次在这买,因此不知道是否可靠。
s********a
发帖数: 328
16
来自主题: Music版 - 这里买Samson C01U便宜
http://www.cowboom.com/auction/index.cfm?P=4&as=1&keyw=samson&itemtype=1&state=&minprice=&maxprice=
我也是在这里拍买到的,同一个卖家,都是bestbuy的outlet。我当时买到的价格是二
十多一些,like new。注意一旦赢得了商品,它会自动从你的信用卡扣掉相应款项。而
且有税和运费。其他地方最便宜都是50+吧。不是全新的,可能是有顾客退货,或者是
摆在商品架上面展示的。
我已经拿到手(我这个是别人退回去bestbuy的,原来的运输标签还在),麦克风没有
问题,但是不要期待比普通的耳麦(其实也是电容的)进步太多(也可能是我期望太高
),除了声强很大的时候,破音现象没那么明显之外。但是我个人还是喜欢动圈,不灵
敏,反而有利于放开声音,而且声音比较暖厚一些。
w*******y
发帖数: 60932
17
25% OFF on all AV cables
----------------------------------------------
Enter promo code: EMCJHKA56
Link:
http://www.newegg.com/Store/SubCategory.aspx?SubCategory=697&na
10% OFF on all ipods
-------------------------------------------
Enter promo code:EMCJHKA57
Link:
http://www.newegg.com/Product/ProductList.aspx?Submit=Property& 50001759&IsNodeId=1&srchInDesc=&MinPrice=&MaxPrice=&OEMMark=0&Manufactory=1759&nm_mc=EMC-IGNEFL120911&cm_mmc=EMC-IGNEFL120911-_-EMC-120911-Index-_-ipod-_-LEB0B
20% OFF ... 阅读全帖
w*******y
发帖数: 60932
18
And many more...
Red card get 5% cash back and free shipping otherwise spend $50 to get free
shipping.
Link:
http://www.target.com/sb/entertainment-movies/-/N-5xsx0#navigat
#navigation=true&facetedValue=/-/N-5xsx0Z5zk8z&viewType=medium&sortBy=
PriceLow&minPrice=from&maxPrice=to&isleaf=false&navigationPath=5xsx0&
parentCategoryId=9975218&facetedValue=/-/N-5xsx0Z5zk8z" rel="nofollow"
target="_blank" onclick="_gaq.push(['_trackEvent', 'thread', 'click', '
4056532 - 5-blurays-kenny-chesney-summer-in... 阅读全帖
(共0页)