码迷,mamicode.com
首页 >  
搜索关键字:hie with the pie    ( 857个结果
BUG when using GYP_DEFINES+=" profiling=1 release_extra_cflags=-fno-omit-frame-pointer disable_pie=1
Hi, I find GYP's bug when dealing with GYP_DEFINES env variables override. I was having a successfully android build, and i wanted to enable profiler support, so i followed the http://www.chromi...
分类:其他好文   时间:2014-12-10 10:50:08    阅读次数:172
POJ 3311-Hie with the Pie(最短路+状压DP)
题目链接:点击打开链接 题意:大致就是邮递员要从0号 送快件,一共有n个地方,要求从0开始走完所有的节点在回到0的最短路径。先用Floyd跑出来最短路,然后就是一个裸TSP问题了 TSP:顾名思义,旅行商问题,就是从起点出发遍历n个城市在回到起点的最短路径,在n比较小的情况下状压是个比较好的办法,二进制0代表没访问该城市,反之亦然。所以一共有 2^n-1种状态, 设 dp[s][i] 代表当前...
分类:其他好文   时间:2014-12-06 21:37:45    阅读次数:226
[翻译] MagicPie
MagicPiePowerful pie layer for creating your own pie view. PieLayer provide great animation with simple usage.PieLayer是一个非常强大的layer,非常易用,效果很炫。The main...
分类:其他好文   时间:2014-12-05 00:33:12    阅读次数:352
POJ 3311 Hie with the Pie(Floyd+状态压缩DP)
错误的转移方程 dp[i][j] 把i当作了步数,以为至多走N步就可以了。作死啊 #include #include #include #include #define maxn 1100 #define inf 0x3f3f3f3f const double eps=1e-8; using namespace std; int dp[12][1<<12]; int maps[12][12];...
分类:其他好文   时间:2014-11-26 21:03:10    阅读次数:359
poj 3122 Pie (二分)
Description My birthday is coming up and traditionally I'm serving pie. Not just one pie, no, I have a number N of them, of various tastes and of various sizes. F of my friends are coming to my p...
分类:其他好文   时间:2014-11-24 22:39:32    阅读次数:243
django 返回json数据,jquery获取并且打印出来
视图代码:importjson deftest(request): pie_list=[[u‘北京‘,50],[u‘上海‘,20],[u‘广州‘,30]] t_country=[u‘北京‘,u‘上海‘,u‘广州‘] t_country_count=[50,20,30] data_dic={‘pie_g‘:pie_list,‘t_country‘:t_country,‘t_county_count‘:t_country_count} returnHttpResponse(j..
分类:Web程序   时间:2014-11-22 23:21:04    阅读次数:700
PIE.htc的使用
文件下载:http://css3pie.com/download/ 使用: .pie_radius{ width:200px; height:200px; background-color:red; -moz-border-radius:8px; -webkit-border-radius:8px;...
分类:其他好文   时间:2014-11-20 20:05:38    阅读次数:600
CSS3兼容IE的大杀器
经过长久以来的不懈努力,我终于成功的将selectivizr与PIE这两个解决css3的利器进行了深度的整合,大大降低了使用难度只要在你的页面上加入这一行代码,整个页面全部兼容css3,不要忘了将文件下载回来放进/js/文件夹兼容圆角border-radius,盒阴影box-shadow、渐变色li...
分类:Web程序   时间:2014-11-19 18:30:14    阅读次数:209
ZP的EXTJS学习笔记(四)——图表的简单使用(图表点击事件)
这次做的比较简单,是一个消息阅读情况的展示。是模仿Example中chart的pie.js做的。贴下改造后的pie.js:Ext.require('Ext.chart.*');Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBo...
分类:Web程序   时间:2014-11-19 13:52:15    阅读次数:285
状压DP [POJ 3311] Hie with the Pie
Hie with the PieTime Limit:2000MSMemory Limit:65536KTotal Submissions:4712Accepted:2502DescriptionThe Pizazz Pizzeria prides itself in delivering pizz...
分类:其他好文   时间:2014-11-16 13:17:58    阅读次数:213
857条   上一页 1 ... 78 79 80 81 82 ... 86 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!