E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
ANTs
poj3565
Ants
(KM-几何与图论的结合)
链接 可以看出蓝的之和一定比红的之和要大,也就是说符合条件的匹配一定是权值最小的,所以二分图的最佳完美匹配。。KM 1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<
·
2015-11-11 05:58
ant
UVALive 4043
Ants
Ants
Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %
·
2015-11-11 03:10
live
poj 3565 uva 1411
Ants
KM算法求最小权
由于涉及到实数,一定,一定不能直接等于,一定,一定加一个误差<0.00001,坑死了…… 有两种事物,不难想到用二分图。这里涉及到一个有趣的问题,这个二分图的完美匹配的最小权值和就是答案。为啥呢?因为如果有四个点,a,b,c,d 。Ab和cd交叉,ac和bd不交叉,那么ac和bd的长度和一定小于ab和cd的长度和,可以画一个图很容易就证出来。
·
2015-11-11 02:03
ant
zoj 2376
Ants
#include<stdio.h> #include<stdlib.h> int a[1000005]; int main(void) { int t,n,m,i,len,max,min,mx,mi; scanf("%d",&t); while(t--) { scanf(&
·
2015-11-10 23:01
ant
servlet提交表单(思考了好多天)
【http://
ants
620.blog.51cto.com/19390/7895】 这几天一直在学习servlet,当我正要调试一个表单提交的程序,发生了HTTP404错误,即找不到相应的类。
·
2015-11-10 23:34
servlet
uva 10714
Ants
(贪心)
题目连接:10714 -
Ants
题目大意:一根棍子上有n只蚂蚁, 这些蚂蚁开始可以任意朝着一个方向移动一直走,向左或是向右,并且移动速度是相同的,但是一旦蚂蚁碰到迎面走来的另一只蚂蚁,那么这两只蚂蚁都会马上改变移动方向
·
2015-11-09 14:14
ant
【ZOJ】3279
Ants
1 #include<cstdio> 2 #define MAXN 100010 3 int tree[MAXN<<2]; 4 inline void PushUp(int rt) 5 { 6 tree[rt]=tree[rt<<1]+tree[rt<<1|1]; 7 } 8 void Build(int L,i
·
2015-11-08 17:18
ant
POJ 3565
Ants
(最小权匹配)
题意 给出一些蚂蚁的点,给出一些树的点,两两对应,使他们的连线不相交,输出一种方案。 思路 一开始没想到怎么用最小权匹配……后来发现是因为最小权匹配的方案一定不相交(三角形两边之和大于第三边)……还是too young too simple……没有融会贯通…… 代码 [cpp] #include <iostream> #include <cstdio> #in
·
2015-11-07 15:38
ant
POJ 3565
Ants
(最小权匹配)
题意 给出一些蚂蚁的点,给出一些树的点,两两对应,使他们的连线不相交,输出一种方案。 思路 一开始没想到怎么用最小权匹配……后来发现是因为最小权匹配的方案一定不相交(三角形两边之和大于第三边)……还是too young too simple……没有融会贯通…… 代码 [cpp] #include <iostream> #include <cstdio> #in
·
2015-11-07 15:23
ant
uva10881 Piotr's
Ants
<排序>
链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1822 题意: 一根长度为L厘米的木棍上有n只蚂蚁,每只蚂蚁要么朝左爬,要么朝右爬,速度为1厘米/秒。当两只蚂蚁相撞时,二者同时转向(转向时间忽略不计)。给出每只蚂蚁的初始位
·
2015-11-05 09:58
ant
poj_1852_
Ants
题目大意:很多的蚂蚁都在长度为L(cm)的膀子上爬行,它们的速度都是1cm/s,到了棒子终端的时候,蚂蚁就会掉下去。如果在爬行途中遇到其他蚂蚁,两只蚂蚁的方向都会逆转。已知蚂蚁在棒子的最初位置坐标,但是我们不知道他们会往哪一个方向爬。请求出所有蚂蚁掉下去的最短时间和最长时间。 题目分析:虽然当蚂蚁数量很多的时候情况会有很多种,但是先考虑小数量的分析就可以找到解决方法:如果只有两只的话,那么最短时
·
2015-11-03 21:54
ant
10881 - Piotr's
Ants
(排序)
题目链接:10881 - Piotr's
Ants
题目大意:在一个长为L的木棒上有n只蚂蚁,给出蚂蚁的初始位置以及方向,问说移动T秒后各个蚂蚁的位置以及状态,如果两只蚂蚁在移动的过程中相撞,则会同时掉头
·
2015-11-02 18:15
ant
试试用JetBrains dotTrace Performance调试Silverlight代码
概述 在.NET平台下常用的性能调试工具有WinDBG,
ANTS
Performance Profiler,JetBrains dotTrace Performance,CLR Profiler等。
·
2015-11-02 11:35
performance
.NET性能调优之三:YSlow相关规则的调优工具和方法
.NET性能调优系列文章 系列文章索引 .NET性能调优之一:
ANTS
Performance Profiler的使用 .NET性能调优之二:使用Visual Studio进行代码度量
·
2015-11-02 10:06
Yslow
[导入]你的网站被人订阅了吗?(浅谈Rss2.0)
阅读全文
Ants
2008-06-13 22:32
·
2015-11-01 10:10
导入
writing class
Our family is middle, I have my grandfather and grandmother, and my uncle and
ants
!
·
2015-10-31 18:52
Class
UVA 10714
Ants
大意:给你一段水平的距离,以及蚂蚁相对于最左边的距离,蚂蚁行走的方向不确定,一旦所有的蚂蚁都走出了这一段水平距离的话,让你求出可能的最小与最大时间。 思路:最小时间非常好求,主要的问题是求最大的时间,我们可以将问题转换为等价问题,即蚂蚁碰到之后然后反方向行走相当于一直前进,这个问题可以手写模拟一遍,发现行走的距离总是相等的。 问题衍生一下,如果有
·
2015-10-31 17:04
ant
.NET工具集合
工具(1) 代码分析.NET Memory Profiler - http://memprofiler.com/
ANTS
Profiler - http://www.red-gate.com
·
2015-10-31 17:57
.net
《Cracking the Coding Interview》——第7章:数学和概率论——题目2
代码: 1 // 7.2 n
ants
are standing on the vertices of an n-edge
·
2015-10-31 15:58
interview
uva 10714
Ants
找规律题?YY题? 题意:给出一条线的长度L(直线在[0,L]),和蚂蚁数,下面m个数字表示m个蚂蚁的起始位置(整数,坐标),所有蚂蚁向哪边走不确定,但是两个蚂蚁相撞会掉头走。蚂蚁的速度1cm/s,蚂蚁没有长度是一个点,另外蚂蚁走到直线的两个尽头就会掉下去。问怎么走,所有蚂蚁最快掉下去,输出时间(所有蚂蚁都掉下去后再输出时间而不是第一个掉下去就输出),然后怎么走最晚掉下去,输出所有蚂蚁都掉下去的
·
2015-10-31 14:29
ant
nginx 启动/停止/重启 BAT
. * * * * Nginx 管理程序 Power By
Ants
* * * * * ECHO. * * ECHO. * 1
·
2015-10-31 13:27
nginx
Interesting Finds: 2008.06.05
Create a Nice, Lightweight JavaScript Tooltip Setting Up Velocity (Distributed Cache) .NET
ANTS
·
2015-10-31 10:35
REST
Interesting Finds: 2009 02.02~02.03
.NET Performance, Measure and
ANTS
Profiler A common class for executing tasks with a responsive
·
2015-10-31 09:25
REST
内存/性能调优工具备忘
内存调优 内存调优工具介绍: 1) CLRProfiler 2)NET Memory Profiler 3)
ANTS
Memory Profiler 4) dotTraceMemory
·
2015-10-31 09:06
性能调优
Interesting Finds: 2009 05.01 ~ 05.10
.NET Introduction to MapReduce for .NET Developers Working With the
ANTS
Profiler to Optimize
·
2015-10-30 14:24
REST
NEU 1497 Kid and
Ants
思路 难度:0
问题 I: Kid and
Ants
时间限制: 1 Sec 内存限制: 128 MB 提交: 42 解决: 33
·
2015-10-30 13:31
ant
poj 1825
Ants
水题
Ants
Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 10722 Accepted
·
2015-10-30 13:56
ant
认识一个新的工具
ANTS
Profiler
ANTS
Profiler 已经是Version 2.00, 在October 2004发布
·
2015-10-30 12:53
profile
.Net+SQL Server企业应用性能优化笔记4——精确查找瓶颈
前面几篇优化笔记写的太过概括,有朋友建议我把优化的步骤和方法写详细点,这篇比较我就详细讲解下使用
ANTS
Profiler+SQL Server Profiler查找瓶颈所在。
·
2015-10-30 10:51
SQL Server
发布一个性能测试工具的破解补丁
前段时间由于项目出了性能上的问题,所以需要对代码进行优化,找出其中最耗时的部分,于是想到了工具
ANTS
Profiler,这个工具比较强大,可以跟踪显示出每个函数所使用的时间,下载页面为:http://
·
2015-10-30 10:45
性能测试
UVA - 10881-Piotr's
Ants
-思路题/模拟
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=25979题意: 一根木棍上有若干只蚂蚁,他们的爬行速度都为1m/s,0时刻的初始位置(距离木棍左端的距离)和爬行方向已知,当两只蚂蚁相遇时,会立刻掉头朝反方向爬去。问经过t秒之后,按输入顺序输出每只蚂蚁的位置和朝向。直接模拟超级麻烦.....要注意到2点就非常好做了1、A往左走
viphong
·
2015-10-30 00:00
使用Server.Transfer还是Response.Redirect?
接上一篇文章认识一个新的工具
ANTS
Profiler,进行我们自己的程序测试 今天偶然间测试了一下我们自己写的程序,由于经过了很多的运算,有个地方用了 Server.Transfer竟然用了17.5
·
2015-10-28 08:58
response
认识一个新的工具
ANTS
Profiler
ANTS
Profiler 已经是Version 2.00, 在October 2004发布
·
2015-10-28 08:57
profile
POJ 1852
Ants
思维题 简单题
Ants
Description An army of
ants
walk on a horizontal pole of length l cm, each with
·
2015-10-28 08:58
ant
[ACM_模拟] UVA 10881 Piotr's
Ants
[蚂蚁移动 数组映射 排序技巧]
"One thing is for certain: there is no stopping them;the
ants
will soon be here
·
2015-10-27 14:01
ant
UVA - 10881 Piotr's
Ants
Problem D Piotr's
Ants
Time Limit: 2 seconds
·
2015-10-27 13:41
ant
POJ 3565
Ants
Ants
Time Limit: 5000ms Memory Limit: 65536KB This problem will be judged on PKU.
·
2015-10-27 13:47
ant
POJ 1852
Ants
Ants
Time Limit: 1000ms Memory Limit: 30000KB This problem will be judged on PKU.
·
2015-10-27 13:31
ant
Ants
暴力
Ants
Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/317/problem/B Description
·
2015-10-23 09:13
codeforces
IIS占用CPU百分百问题排查方案
但是结合一些工具也可以找到原因的,关于windbg的使用,好像有本关于.net调试的书,大家有兴趣可以看看,网上也有一些帖子,但关于
ANTS
Profiler的帖子就比较少了,大家也可以下载试用版来帮助解决问题
·
2015-10-21 12:43
IIS
【MVC整理】1.使用 StructureMap 作为 ASP.NET MVC 的 DI 框架
StructureMap.dll文件,并引用命名空间StructureMap下面是我们需要使用IoC的示例代码,我们要创建TestController,希望通过IoC为TestController的构造函数提供
Ants
.Provider.I
·
2015-10-21 12:28
asp.net
NET FrameWork & CLR & C# 运行基本原理
CLR 管理TOOLS: 1)(推荐) CLR Profiler (Allocation Profiler)来诊断内存泄露;微软公司提供,免费. 2) (推荐)
ANTS
·
2015-10-21 11:24
framework
.Net+SQL Server企业应用性能优化笔记3——SQL查询语句
ANTS
Profiler+SQL Server Profiler,这两个工具的完美搭配可以准确的定位性能是出在哪个函数,哪个SQL语句上。 如果性能问题是出在程序上,那么就要根据业务对
·
2015-10-21 10:22
SQL Server
UVA 10714
Ants
UVA_10714 两个蚂蚁碰撞后反向和两个蚂蚁擦身而过继续前行是等价的。 #include<stdio.h>#include<string.h>int main(){ int i,j,k,len,t,n,tt,max,min; scanf("%d",&t); for(tt=0;tt
·
2015-10-21 10:55
ant
StructureMap 作为 ASP.NET MVC 的 DI 框架的使用实例
StructureMap.dll文件,并引用命名空间StructureMap下面是我们需要使用IoC的示例代码,我们要创建TestController,希望通过IoC为TestController的构造函数提供
Ants
.Provider.I
·
2015-10-21 10:12
asp.net
POJ ——1852
Ants
AntsTimeLimit: 1000MS MemoryLimit: 30000KTotalSubmissions: 12474 Accepted: 5478DescriptionAnarmyofantswalkonahorizontalpoleoflengthlcm,eachwithaconstantspeedof1cm/s.Whenawalkingantreachesanendofthepol
wuxiushu
·
2015-10-20 12:00
算法
ACM
poj
ants
ZOJ 补题 3903 && 3905 && 3911 (ZOJ Monthly, October 2015)
ZOJ3903
Ants
【题目链接】:clickhere~~【题目大意】给出一个长方体的最长边的长度,求在所有可能的情况下,在表面上从一个对角线到另一个对角线经过路径的平方和【思路】:只给出一个最长边,可以枚举其他两边
u013050857
·
2015-10-12 15:00
ZOJ
月赛
UVa 10881.Piotr's
Ants
【RuijiaLiu随书练习】【10月7】
Piotr'sAnts蚂蚁碰撞,相当于对穿而过。过一段时间以后蚂蚁的相对位置不变。代码:#include #include #include usingnamespacestd; constintmaxn=10000+10; structants{ intid,p,d; booloperatorl)printf("Felloff\n"); elseif(after[i].d==1)printf("
a995549572
·
2015-10-07 13:00
C++
ACM
uva
ants
RujiaLiu随书练习
弱校联萌十一大决战之厉兵秣马A
ants
【八皇后拓展】poj3565
YoungnaturalistBillstudiesantsinschool.Hisantsfeedonplant-lousesthatliveonappletrees.Eachantcolonyneedsitsownappletreetofeeditself.Billhasamapwithcoordinatesof n antcoloniesand n appletrees.Heknowstha
zhou_yujia
·
2015-10-06 09:00
poj
八皇后
uva 1411 -
Ants
(几何+完美匹配)
题目连接:uva1411-
Ants
以两点间距离做权值,建图,做完美匹配。如果两线段AB与CD向交,那么AD或者BC边的权值小于AB和CD。
u011328934
·
2015-09-23 22:00
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他