Redian新闻
>
麦当劳等巨头看好Apple Pay:主流用户正用
avatar
麦当劳等巨头看好Apple Pay:主流用户正用# Apple - 家有苹果
i*9
1
一道老题,求最大square 可以用 DP
http://geeksforgeeks.org/?p=6257
Let the given binary matrix be M[R][C]. The idea of the algorithm is to
construct an auxiliary size matrix S[][] in which each entry S[i][j]
represents size of the square sub-matrix with all 1s including M[i][j] and
M[i][j] is the rightmost and bottommost entry in sub-matrix.
1) Construct a sum matrix S[R][C] for the given M[R][C].
a) Copy first row and first columns as it is from M[][] to S[][]
b) For other entries, use following expressions to construct S[][]
If M[i][j] is 1 then
S[i][j] = min(S[i][j-1], S[i-1][j], S[i-1][j-1]) + 1
Else /*If M[i][j] is 0*/
S[i][j] = 0
2) Find the maximum entry in S[R][C]
3) Using the value and coordinates of maximum entry in S[i], print
sub-matrix of M[][]
求最大的rectangle有什么解法?
avatar
u*r
2
http://www.feng.com/apple/news/2014-11-16/McDonald-s-and-other-
北京时间11月16日上午消息,苹果移动支付服务Apple Pay的推出已有3周时间。麦
当劳和全食超市等北美零售巨头均表示,这一移动支付服务已经吸引了主流用户的使用。
过去多年中,科技公司期待用户能放弃传统的钱包,使用智能手机来支付。而这样
的场景在Apple Pay推出之后正逐渐出现。
Apple Pay的推出是苹果首次涉足移动支付服务,一些大型零售商已经看到,许多
用户迫切希望在结账时使用iPhone来支付。甚至苹果的一些竞争对手,例如谷歌和
Softcard也表示,苹果推动了用户对移动支付服务,包括这些竞争对手服务的关注。
全食超市表示,已经处理了来自Apple Pay的超过15万笔交易。麦当劳在全美的1.4
万家餐厅已经接受Apple Pay支付。该公司表示,Apple Pay已经占到所有移动支付交易
的50%。美国连锁药店Walgreens则表示,自Apple Pay推出以来,来自移动钱包的支付
量已经翻番。
Apple Pay目前尚未获得市场主导地位,不过零售商的数据首次表明,主流用户愿
意放弃使用现金和银行卡。分析师指出,苹果可能正在打开一个市场。
Forrester Research分析师德尼·卡灵顿(Denee Carrington)表示:“坦白地说,
其中很大一部分原因在于苹果品牌的强大,以及商户和消费者喜欢这一移动支付服务带
来的便利。我并不是说,Apple Pay在一夜之间改变了行业,但其他移动钱包服务从未
做到过这一点。”
不过,并不是所有零售商都对Apple Pay的早期普及情况感到兴奋。玩具反斗城目
前在870家门店支持Apple Pay支付。该公司表示,尽管在Apple Pay推出之后移动支付
交易数量有所增长,但移动支付仍仅占所有支付的很小一部分,因为消费者仍在了解这
一服务。
不过,Softcard、谷歌和其他提供移动支付服务的公司表示,苹果的到来将使移动
支付市场的所有参与者受益。
Softcard CEO迈克尔·阿伯特(Michael Abbott)表示:“Apple Pay带来了巨大的
推力。”Softcard是一款得到了AT&T、T-Mobile和Verizon等电信运营商支持的移动支
付服务。
阿伯特表示,由于苹果的到来,许多公司目前都希望支持类似的近场通信(NFC)支
付技术。这样的趋势将使消费者更方便地通过智能手机完成支付。他同时表示,自
Apple Pay发布以来,Softcard应用的下载量出现增长,而当前用户也更频繁地使用这
一服务。
上周谷歌表示,自Apple Pay发布以来,其移动支付服务谷歌钱包的使用量也出现
增长。对此,阿伯特认为:“这就像是水涨船高。”
移动支付服务正越来越流行,但整体来看,通过智能手机的支付仍然不多。市场研
究公司Gartner估计,2013年,全球范围内用户通过移动支付花费了2354亿美元,高于
2012年的1631亿美元。不过,这一数字在北美很小,2013年用户通过移动支付完成的交
易约为370亿美元,高于前一年的 240亿美元。
Jacdaw Research电信行业分析师简·道森(Jan Dawson)表示,Apple Pay面临的障
碍在于,只有最新款iPhone,即iPhone 6和iPhone 6 Plus支持该服务。此外,目前美
国仍有许多零售商不支持Apple Pay。因此,Apple Pay成为主流还需要几年时间。
道森指出:“Apple Pay将逐步而缓慢地取得成功。到那时,Apple Pay将会是一款
全新的服务,大部分用户都会偶尔使用。这仍是一个漫长的过程。”
avatar
i*e
3
See the maximal rectangle solution explained here using step-wise
improvement:
http://www.drdobbs.com/184410529
http://www.seas.gwu.edu/~simhaweb/cs151/lectures/module6/module (search for maximal rectangle)
The optimal solution is O(M*N) (ie, the size of the rectangle). This problem
is actually very much related to this problem "Largest Rectangle in a
Histogram", which can be solved efficiently in O(N) time.
http://www.informatik.uni-ulm.de/acm/Locals/2003/html/judge.htm
Basically, the easiest way to solve this is using a stack to exploit the
special structure.
一些常见面试题的答案与总结 -
http://www.ihas1337code.com
avatar
p*c
4
这个很搞啊,你说starbucks支持apple pay还差不多,麦当劳这种廉价垃圾食品支持
apply pay,说明了啥?apple平民化不再高大上?还是apple主流用户去麦当劳?
文章是果黑写的
avatar
i*9
5
Thanks!

(search for maximal rectangle)
problem

【在 i**********e 的大作中提到】
: See the maximal rectangle solution explained here using step-wise
: improvement:
: http://www.drdobbs.com/184410529
: http://www.seas.gwu.edu/~simhaweb/cs151/lectures/module6/module (search for maximal rectangle)
: The optimal solution is O(M*N) (ie, the size of the rectangle). This problem
: is actually very much related to this problem "Largest Rectangle in a
: Histogram", which can be solved efficiently in O(N) time.
: http://www.informatik.uni-ulm.de/acm/Locals/2003/html/judge.htm
: Basically, the easiest way to solve this is using a stack to exploit the
: special structure.

avatar
V*s
6
美国中产阶级也会吃麦当劳啊,白人收入不错的,吃麦当劳的太多了,尤其午餐。

【在 p***c 的大作中提到】
: 这个很搞啊,你说starbucks支持apple pay还差不多,麦当劳这种廉价垃圾食品支持
: apply pay,说明了啥?apple平民化不再高大上?还是apple主流用户去麦当劳?
: 文章是果黑写的

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。