H -HTime Limit:1000MSMemory Limit:262144KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionValery is a PE teacher at a school in Berland. Soon the ...
分类:
其他好文 时间:
2015-04-08 21:08:45
阅读次数:
153
MongoDB实现交叉汇总比较困难,如果将数据取出,用Java等高级语言来汇总的话,也相当复杂。因此,可以考虑用集算器esProc辅助MongoDB完成交叉汇总。下面我们通过一个例子来看一下具体做法。Student集合如下:db.student.insert({school:‘school1‘,sname:‘Sean‘,sub1:4,sub2:5})..
分类:
数据库 时间:
2015-04-08 16:42:31
阅读次数:
199
DescriptionEveryday Littile Hi and Little Ho meet in the school cafeteria to have lunch together. The cafeteria is often so crowded that two adjacent ...
分类:
其他好文 时间:
2015-04-07 13:45:21
阅读次数:
178
Strange Class
Accepts: 519
Submissions: 1749
Time Limit: 2000/1000 MS (Java/Others)
Memory Limit: 65536/65536 K (Java/Others)
Problem Description
In Vivid’s school, th...
分类:
其他好文 时间:
2015-04-05 16:06:28
阅读次数:
138
【思路】:模拟。不需要结构体,用数组记录就可以。注意,题目中说了学校“从1开始连续编号”。
【AC代码】:
#include
#include
using namespace std;
const int maxn = 100000+10;
int school[maxn];
int main()
{
//freopen("in.txt", "r", stdin);
int n =...
分类:
其他好文 时间:
2015-04-04 09:14:50
阅读次数:
128
公司原来用nhibernate,现在考虑要不要用EF。所以就产生了测试这两个性能的要求。对比两个ORM工具的性能,主要是对比ORM配置和启动速度;建表速度;插入行速度;修改行速度以及查询速度,删除用的比较少,就不测试了。 测试表结构 public class School { ...
分类:
其他好文 时间:
2015-04-03 13:08:33
阅读次数:
131
1、表名、列名有效字符集:小写字母、数字、下划线,如student_course2、表名、列名用单数而不是负数,如student,而不是students3、表名、列名不使用不必要的前缀或后缀,如tbl_school,school_table4、使用整数作为ID字段,也许现在没有这个必要,但是将来需要,例如关联表,..
分类:
数据库 时间:
2015-04-02 16:38:56
阅读次数:
174
Vasya has recently learned at school what a number’s divisor is and decided to determine a string’s divisor. Here is what he came up with.String a is the divisor of string b if and only if there exists...
分类:
其他好文 时间:
2015-03-30 18:51:43
阅读次数:
134
http://acm.hdu.edu.cn/showproblem.php?pid=4403
Problem Description
Aoshu is very popular among primary school students. It is mathematics, but much harder than ordinary mathematics for pri...
分类:
其他好文 时间:
2015-03-29 12:16:05
阅读次数:
151
use School if exists (select*from sysobjects where name='Teacher')drop table Teacher gocreate table Teacher(Id int primary key identity(1,1), --参数第一个种...
分类:
数据库 时间:
2015-03-19 21:54:52
阅读次数:
165