地址:http://poj.org/problem?id=1873 题目: The Fortified Forest Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 6421 Accepted: 1811 Description ...
分类:
其他好文 时间:
2017-02-04 18:08:26
阅读次数:
209
Problem Description Long long ago, there lived two rabbits Tom and Jerry in the forest. On a sunny afternoon, they planned to play a game with some st ...
分类:
其他好文 时间:
2017-02-04 15:07:18
阅读次数:
189
http://codeforces.com/problemset/problem/755/C 题意:该图是类似于树,给出n个点,接下来p[i]表示在树上离 i 距离最远的 id 是p[i],如果距离相等则p[i]是 id 较小的点。 思路:一开始没什么想法,画几分钟图发现不到什么东西,后来想着 i ...
分类:
数据库 时间:
2017-01-17 07:40:03
阅读次数:
252
There is a plethora of classification algorithms available to people who have a bit of coding experience and a set of data. A common machine learning ...
分类:
其他好文 时间:
2017-01-12 21:28:27
阅读次数:
293
基于netty轻量的高性能分布式RPC服务框架forest<上篇> 文章已经简单介绍了forest的快速入门,本文旨在介绍forest用户指南。 基本介绍 Forest是一套基于java开发的RPC框架,除了常规的点对点调用外,Motan还提供服务治理功能,包括服务节点的自动发现、摘除、高可用和负载 ...
分类:
Web程序 时间:
2016-12-25 23:05:22
阅读次数:
1447
转:http://blog.csdn.net/jlei_apple/article/details/8168856 这两天在看关于boosting算法时,看到一篇不错的文章讲bootstrap, jackknife, bagging, boosting, random forest 都有介绍,以下是 ...
分类:
其他好文 时间:
2016-12-23 01:16:01
阅读次数:
167
并查集合并 #include<iostream> using namespace std; const int MAX = 10010; int father[MAX],root[MAX]; int findfather(int x){ if(x==father[x]) return x; else ...
分类:
其他好文 时间:
2016-11-25 22:48:21
阅读次数:
187
A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 7995 Accepted Submissio ...
分类:
其他好文 时间:
2016-11-12 22:18:30
阅读次数:
162
题意:有一棵N个点的树,每个点上有点权 定义路径长度为所经过的所有点的点权之和,树的直径为一棵树中最大的路径长度 有N次询问,每次询问要求回答所有树的直径之积 每次询问后会删一条边,树的数量会+1 要求回答N次询问,答案 mod 10^9+7 n<=100000 思路:因为知道每次删哪条边所以可以离 ...
分类:
其他好文 时间:
2016-11-03 13:28:34
阅读次数:
211
前言:因为有接触过随机森林的基础知识,学习机器学习的时候也遇到过,最近又深入学习一次,以此mark一下。
一. 什么事随机森林?
作为新兴起的、高度灵活的一种机器学习算法,随机森林(Ran...
分类:
其他好文 时间:
2016-11-02 14:49:46
阅读次数:
414