题目:hdoj 3605 Escape
分类:中等最大流 | 二分图多重匹配
题意:给出n个人和m个星球,每个人有想去的兴趣,然后每个星球有容量,问能不能让所有人都住在自己想去的星球?
分析:最大流的话卡的非常严,这个题目写了之后手写MTL,超内存,然后加入状态压缩之后TEL,后面没办法了看别人说C++提交能过,改C++Compilation Error,不容易呀,...
分类:
其他好文 时间:
2014-08-24 12:59:02
阅读次数:
193
string sql = "select * from tb_Room";//查询所有记录,返回字段。 adapter = new SqlDataAdapter(sql, conn);//答:DataAdapter对象在DataSet与数据之间起桥梁作用 ...
分类:
其他好文 时间:
2014-08-20 14:00:32
阅读次数:
140
题意:有n个人去m个星球 告诉你每个人想去哪些星球和每个星球最多容纳多少人,问能不能让所有人都满足分析:二分图多重匹配代码: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 const int m...
分类:
其他好文 时间:
2014-08-19 22:18:35
阅读次数:
286
下划线和百分号在sql模糊查询like语句中为特殊字符,分别可匹配1个字符和0到多个字符,如果需要真正查询特殊字符得转义,如like ‘a\_b%‘ escape ‘\‘,将匹配前3个字符为a_b的所有记录。 1、PreparedStatement处理...
分类:
数据库 时间:
2014-08-19 19:20:45
阅读次数:
292
Django1.3 模板标签和过滤器 内建标签 autoescape 控制HTML转义,参数是:on 或 off。效果和使用safe或escape过滤器相同。 {% autoescape on %} {{ body }} {% endautoescape %} block 定义一个能被子模板覆盖的区...
分类:
其他好文 时间:
2014-08-19 13:01:25
阅读次数:
306
UVALive
6606 Meeting Room Arrangement
COJ有这题,一模一样的,COJ应该是从这个OJ上拿的吧。
按右端点排序,然后从第一个开始贪心的取相邻的。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define mem(a,b) memse...
分类:
其他好文 时间:
2014-08-18 22:07:13
阅读次数:
278
在抓取某网站数据,结果在数据包中发现了一串编码的数据:"......\u65b0\u6d6a\u5fae\u535a......", 这其实是中文被unicode编码后了的数据,想解码出中文来。解决方案:方案A(稳定版+推荐):function replace_unicode_escape_sequ...
分类:
Web程序 时间:
2014-08-18 10:38:03
阅读次数:
208
This article come from HEREARS-L1: LearningTuesday 10:30–12:30; Oral Session; Room: Leonard de Vinci10:30ARS-L1.1—GROUP STRUCTURED DIRTY DICTIONARY LE...
分类:
其他好文 时间:
2014-08-18 10:26:04
阅读次数:
1784
find a way to escape
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1395 Accepted Submission(s): 510
Problem Description
一日,话说0068与...
分类:
其他好文 时间:
2014-08-14 14:12:58
阅读次数:
183