一、编译boost库第一步:下载boost库,下载地址http://sourceforge.net/projects/boost/files/boost/1.55.0/第二部:解压boost库,例如解压到F:\Third-party libs\boost\boost_1_55_0第三部:开始->程序...
分类:
其他好文 时间:
2014-07-09 23:06:43
阅读次数:
332
题目来源:Light OJ 1316 1316 - A Wedding Party
题意:和HDU 4284 差不多 有一些商店 从起点到终点在走过尽量多商店的情况下求最短路
思路:首先预处理每两点之前的最短路 然后只考虑那些商店 个数小于15嘛 就是TSP问题 状态压缩DP搞一下 状态压缩姿势不对 有必要加强
#include
#include
#include
#include...
分类:
其他好文 时间:
2014-07-08 19:37:07
阅读次数:
241
Cake
Time Limit: 1 Second
Memory Limit: 32768 KB
You want to hold a party. Here's a polygon-shaped cake on the table. You'd like to cut the cake into several triangle-shaped parts for th...
分类:
其他好文 时间:
2014-07-08 15:36:15
阅读次数:
298
在ueditor.mini for asp.net 中,将上传的图片保存的路径更改了,可图片在 world 编辑器中不显示,但却可以上传到指定的保存目录下,解决这个问题的方法 是: 在udditor_mini--->third-party---->umeditor.config.js中, 也就是 u...
分类:
其他好文 时间:
2014-07-06 15:58:42
阅读次数:
230
1422 - Halloween Costumes
PDF (English)
Statistics
Forum
Time Limit: 2 second(s)
Memory Limit: 32 MB
Gappu has a very busy weekend ahead of him. Because, next...
分类:
其他好文 时间:
2014-07-03 16:31:28
阅读次数:
198
求来回最短路加起来最长的一条。
两次SPFA,然后选某个点的来回最长。(有向图)
Dijkstra+邻接矩阵 比较方便建立 反向图。
我用SPFA+2个邻接表(正图+反图),C++ 32ms。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
...
分类:
其他好文 时间:
2014-07-03 16:01:33
阅读次数:
173
CRM2013部署完ADFS后通过url在浏览器中访问测试是否成功,成功进入登陆界面但在登陆界面输入用户名和密码后始终报身份验证失败,系统中的报错信息如下:Microsoft.IdentityServer.AuthenticationFailedException: MSIS3014。The encryption certificate of the relying party
trust '...
分类:
其他好文 时间:
2014-07-01 07:27:53
阅读次数:
339
R12 客户表结构客户表/联系人/PARTY关联HZ_PARTIES客户账户表HZ_CUST_ACCOUNTS例子:SELECT hp.party_number --客户注册标识, hp.party_name --组织名/客户, hp.known_as --别名, hp.organization_n...
分类:
数据库 时间:
2014-06-27 17:17:56
阅读次数:
1330
2014-06-26 BaoXinjian一、摘要基本在做supplier, customer, employee查询,都会涉及hz_parties表的使用,通过主外键party_id进行关联二、 案例1. 查询Supplier相关信息2. 供应商主表数据 1 SELECT ass.vendor_i...
分类:
其他好文 时间:
2014-06-27 12:05:08
阅读次数:
247
题目链接:http://61.187.179.132/JudgeOnline/problem.php?id=1037题意:给定n个0m个1。有多少种排列方式使得任意一段中01的个数差小于等于K?思路:f[i][j][k][t]表示i个0、j个1、0比1最多多k个、1比0最多多t的方案数。int n,...
分类:
其他好文 时间:
2014-06-23 07:15:15
阅读次数:
259