GCommando WarInput:Standard InputOutput:Standard
Output“Waiting for orders we held in the wood, word from the front never cameBy
evening the sound of ...
分类:
其他好文 时间:
2014-05-20 00:46:38
阅读次数:
304
Given a binary tree, determine if it is
height-balanced.For this problem, a height-balanced binary tree is defined as a
binary tree in which the depth...
分类:
其他好文 时间:
2014-05-19 20:40:55
阅读次数:
278
/************************************************************** Problem: 2631
User: wangyucheng Language: C++ Result: Accepted Time:184...
分类:
其他好文 时间:
2014-05-19 11:27:24
阅读次数:
320
The linear screen is a new kind of high
efficiency screening equipment which vibrates with a vibration motor. Our
company has introduced technology fr...
分类:
其他好文 时间:
2014-05-19 10:36:28
阅读次数:
282
We use the pt-pmp (a variety for pmp
!http://poormansprofiler.org/! by Percona) tool a lot to analyze our online
MySQL problem.But when we execute the...
分类:
其他好文 时间:
2014-05-18 20:04:54
阅读次数:
425
题目链接:11270 - Tiling Dominoes
和POJ 2411一样的题目,试着用插头DP写了下
代码:
#include
#include
#include
using namespace std;
int n, m, pre = 0, now = 1;
long long dp[2][2222];
int main() {
while (~scanf("%d%d",...
分类:
其他好文 时间:
2014-05-18 14:44:37
阅读次数:
264
Machine learning with python Linear Regression
数据来自 cs229 Problem Set 1 (pdf)Data:q1x.dat,q1y.dat,q2x.dat,q2y.datPS1 Solution
(pdf)从左上往右下 batchG...
分类:
编程语言 时间:
2014-05-17 23:05:44
阅读次数:
525
原题链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1425
DP题。 f[i][j]表示当前数字为i,分解式中最大质数为j的方案数,那么,状态转移方程为: f[i][j] = sum(f[i-j][k]) 其中...
分类:
其他好文 时间:
2014-05-17 20:41:17
阅读次数:
296
使用高德地图API需要申请一个开发者ID号以及我所用的相关资源:
http://pan.baidu.com/disk/home?fr=ibaidu
该文件夹中有一个官方文档,AMap_IOS_API_Guid,提供了使用方法供开发者参阅。
看了张一飞大神的论文,开始找题做,上面提到的一个就是ecnu上的题链接:http://www.acm.cs.ecnu.edu.cn/problem.php?problemid=1328题目大意:给定red、green、blue三种长度分别为c、z、n的矩形条纹,要求用这三种矩形条纹来cover大小为...
分类:
其他好文 时间:
2014-05-17 18:23:23
阅读次数:
292