Leap Frog
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768
K (Java/Others)
...
分类:
其他好文 时间:
2015-02-02 14:11:05
阅读次数:
144
题意:给定n表示有n个格子,下面每个格子为O的概率是多少。对于一段连续 x 个O的价值就是 x^2 ;求获得的价值的期望是多少。
思路:n^2=n×(n-1)+n,设ai为第i段连续O的长度,∑ai^2 = ∑[ ai+ ai*(ai-1) ] = ∑ ai*(ai-1) + ∑ai = ∑ C(ai, 2)*2 + ∑ai,那么问题可以转
化为求长度大于1的连续段数*2+O的个数的总期望。 ...
分类:
其他好文 时间:
2015-02-02 14:12:38
阅读次数:
88
ID Codes
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld
& %llu
Submit Status
Description
ID Codes
It is 2084 and the year of Big Brother has...
分类:
其他好文 时间:
2015-02-02 14:11:50
阅读次数:
128
#include
#include
#include
using namespace std;
const int maxn = 10010;
struct edge
{
int v, next;
}e[maxn*2];
int first[maxn], cnt;
int top[maxn], dep[maxn], sz[maxn], f[maxn], son[maxn], rank[m...
分类:
其他好文 时间:
2015-02-02 14:10:08
阅读次数:
107
uva 532 Dungeon Master
You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one mi...
分类:
其他好文 时间:
2015-02-02 14:11:21
阅读次数:
147
Theme Section
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1411 Accepted Submission(s): 712
Problem Description
It's time for mus...
分类:
其他好文 时间:
2015-02-02 14:12:40
阅读次数:
122
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is...
分类:
其他好文 时间:
2015-02-02 14:12:09
阅读次数:
110
在Visual C++开发过程后,也许对下面一段代码并不陌生:#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif...
分类:
其他好文 时间:
2015-02-02 14:10:03
阅读次数:
152
npoi workbook 的 cellstyle 创建不能超过4000的解决方法...
分类:
其他好文 时间:
2015-02-02 14:11:50
阅读次数:
336
简单来说,因为C就那点破feature,如果你把指针干掉,那这语言就完了。相反,如果你干掉struct,干掉union,干掉数组,甚至你把if-while都干掉,留下malloc和goto,则最多就是程序难写一点而已。
所以这就是为什么C语言的精髓是指针了,因为他只有指针可以用了。
把struct和数组都砍掉之后
只能用char*让后到处指针运算和强制转换了,因为没有了内存布...
分类:
编程语言 时间:
2015-02-02 14:09:23
阅读次数:
198
#title : Two Sum#Given an array of integers, find two numbers such#that they add up to a specific target number.#The function two Sum should return in...
分类:
其他好文 时间:
2015-02-02 14:10:58
阅读次数:
119
英文原文:60 Problem Solving Strategies 程序员的生活就是解决一个又一个问题,永无止境。这篇文章介绍了一系列解决问题的策略。 根本的指导方针 1. 首先写代码的时候最好不要有缺陷。最好的修复方法就是让 bug 胎死腹中。良好的单元测试强制数据库约束使用输入验证框架...
分类:
其他好文 时间:
2015-02-02 14:08:14
阅读次数:
112
摘自:http://blog.ibireme.com/2014/09/16/adapted_to_iphone6/苹果公司官网设计介绍到:Retina显示屏的超高像素密度已超过人眼能分辨的范围。Retina对图像设计(图标、启动画面和其它所有像素有关的东西)有什么影响呢?如果我们的app要支持Ret...
分类:
移动开发 时间:
2015-02-02 14:10:28
阅读次数:
662
最近,因为校友网项目开始有些规模了。开始就要考虑对静态资源进行工程自动化的管理。一讲到前端的自动化工具,大家或许都会想到Grunt,Gulp,或者百度的FIS。这三个都有各自的特点,大家可以依据自己的喜好,选择工具。至于为什么选择Gulp,因为Grunt的gruntfile配置真的很头大好吗!简.....
分类:
其他好文 时间:
2015-02-02 14:08:26
阅读次数:
273
方法1: 用SET PASSWORD命令 mysql -u root mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');方法2:用mysqladmin mysqladmin -u root password "ne...
分类:
数据库 时间:
2015-02-02 14:10:28
阅读次数:
160
; 图示二; 高地址………………………………………………………………………低地址; | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |; |765432107654321076543210765432107654321...
分类:
其他好文 时间:
2015-02-02 14:08:40
阅读次数:
107
一句话总结:协变让一个粗粒度接口(或委托)可以接收一个更加具体的接口(或委托)作为参数(或返回值);逆变让一个接口(或委托)的参数类型(或返回值)类型更加具体化,也就是参数类型更强,更明确。 通常,协变类型参数可用作委托的返回类型,而逆变类型参数可用作参数类型。对于接口,协变类型参数可用作接口的.....