码迷,mamicode.com
首页 >  
搜索关键字:crossed matchings    ( 24个结果
ZOJ 1425 Crossed Matchings(动态规划)
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1425 Crossed Matchings Time Limit: 2 Seconds      Memory Limit: 65536 KB There are two rows of positive integer numbers. W...
分类:其他好文   时间:2015-08-17 12:07:12    阅读次数:163
Lightoj 1062 - Crossed Ladders【二分】
题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1062题意: 两个梯子靠墙放,一个长度是x一个长度是y,它们交点到地面的距离是c。求这两个梯子底部的距离。思路:二分底部的距离t,往计算t’ ,根据t和t’的大小关系更新上下界即可。 设宽为mid,那么可以求得 c/sqrt( y^2 - mid^2 ) + c/sqrt( x...
分类:其他好文   时间:2015-07-24 20:51:08    阅读次数:128
cross,across,through,pass,做"穿过"时的区别
cross,across,through,pass,做"穿过"时的区别①:cross ,动词,侧重于横穿,比如过马路,过河;1.He crossed the road. 他横穿那条马路。 ②:across 是由cross变过来的,意思一样,只是词性不同,across是介词,动词+across=...
分类:其他好文   时间:2015-06-09 00:46:05    阅读次数:804
POJ1692:Crossed Matchings
Description There are two rows of positive integer numbers. We can draw one line segment between any two equal numbers, with values r, if one of them is located in the first row and the other one i...
分类:其他好文   时间:2015-05-12 21:06:37    阅读次数:135
ZOJ 1425 Crossed Matchings(LCS变形)
题目大意: 就是说给你两行数字,然后对于每一行的相同的数字进行连线,每次连接成功后,就算是1次成功,求最大的成功次数。当然,要成功的话,也是要满足一定的条件的: 1.在连接的过程中,不能用两根线连接了4个相同数字。 2.一个数字不能发出两条线。解题思路: 刚看到这个题,以为是图论的知识,感觉...
分类:其他好文   时间:2015-04-09 00:58:48    阅读次数:137
UVA 10566 && POJ 2507 Crossed Ladders (几何)
UVA 10566 && POJ 2507 Crossed Ladders (几何)...
分类:其他好文   时间:2015-01-24 17:23:13    阅读次数:123
poj 2507 Crossed ladders 二分解方程
题意: 给两把梯子的长度x,y和他们交点的高度c,求两梯子底部之间的距离。 分析: 化简后得方程c/sqrt(x^2-w^2)+c/sqrt(y^2-w^2)=1,f(w)=c/sqrt(x^2-w^2)+c/sqrt(y^2-w^2)单调增,可以二分解,注意精度。 代码: //poj 2507 //sep9 #include #include using namespace std...
分类:其他好文   时间:2015-01-23 13:30:32    阅读次数:153
zoj 1425 最大交叉匹配
Crossed MatchingsTime Limit: 2 Seconds Memory Limit: 65536 KBThere are two rows of positive integer numbers. We can draw one line segment between any....
分类:其他好文   时间:2014-11-11 18:49:49    阅读次数:199
UVA - 10566 Crossed Ladders
给出x,y,c,求?的长度 我的做法: 首先写了一个关于x,y,c,?的表达式,发现拆开后是解一个四元一次方程,比较麻烦 发现表达式的一边是个关于?的单调递减函数后,就用二分来解了 我的代码: #include #include #include #include #include #include #include #include #include #...
分类:其他好文   时间:2014-09-12 20:44:24    阅读次数:241
POJ 1692 Crossed Matchings(DP)
Description There are two rows of positive integer numbers. We can draw one line segment between any two equal numbers, with values r, if one of them is located in the first row and the other one i...
分类:其他好文   时间:2014-08-16 23:52:01    阅读次数:560
24条   上一页 1 2 3 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!