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
2976
POJ
2976
(二分)
DroppingtestsTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 8735 Accepted: 3043DescriptionInacertaincourse,youtake n tests.Ifyouget ai outof bi questionscorrectontest i,yourcumulativeaverageis
morejarphone
·
2016-03-16 16:00
HDU 5289 Assignment(2015 Multi-University Training Contest 1)
AssignmentTimeLimit:4000/2000MS(Java/Others) MemoryLimit:65536/65536K(Java/Others)TotalSubmission(s):
2976
zyx520ytt
·
2016-02-28 18:00
ZOJ-
2976
-Light Bulbs【5th浙江省赛】【暴力枚举】
ZOJ-
2976
-LightBulbsWildleopardhadfalleninlovewithhisgirlfriendfor20years.Hewantedtoendthelongmatchfortheirloveandgetmarriedthisyear.Heboughtanewhouseforhisfamilyandhiredacompanytodecoratehishouse.Wild
loy_184548
·
2016-02-20 13:00
ZOJ
暴力
2976
POJ
2976
又发现新东西了哇咔咔话说每天都能学到新的是不是因为我太弱了(什么都没见过%>_ #include #include #include usingnamespacestd; doublea[1005],b[1005],d[1005]; intn,k; boolcheck(doublel){ for(inti=1;i0; } intmain(){ while(scanf("%d%d",&n,&k)&&
nlj1999
·
2016-01-18 19:00
POJ
2976
01分数规划
题意: 给定n个二元组(a,b),删除k个二元组,使得剩下的a元素之和与b元素之和的比率最大(比率最后乘100输出) 题解: 最裸的01分数规划,以此题为例讲述如何构造。 设:xi∈{0,1},表示第i个二元组是否留下,p为比率,P为p的最大值,即比例的最大值(注意区分大P于小p) 则:p=sigma(ai*xi)/sigma(bi*xi) &
·
2015-11-13 15:47
poj
poj
2976
Dropping tests
id=
2976
通过二分 不断的移动左右边界 知道满足精度 #include<iostream> #include<cstring> #include<algorithm
·
2015-11-13 12:22
test
poj
2976
Dropping tests
id=
2976
这道题就是从n个a[i]和b[i]中去掉k个a[i]和[i]使得.最大。
·
2015-11-13 07:51
test
POJ
2976
算是一道裸的0-1分数规划,0-1规划正确性的证明请参考OI论文《最小割模型在信息学竞赛中的应用》,里面非常详细。 总之,就是枚举比例,求a-bx的最大值,由于最多可以删去k个物品,实际就是保留n-k个,然后就在n个物品中选出最大的n-k个物品,然后再看剩下的物品里面权值为正就加进来,最后,看ans是否等于0 View Code 1 #include<cstdio>
·
2015-11-13 06:47
poj
HDUOJ---(2203)亲和串
Limit: 32768/32768 K (Java/Others) Total Submission(s): 6579 Accepted Submission(s):
2976
·
2015-11-12 12:44
HDU
poj
2976
(01规划)
1 // File Name:
2976
.cpp 2 // Auth
·
2015-11-12 11:48
poj
POJ
2976
Dropping Tests
id=
2976
题目大意:给定n个二元组(a,b),扔掉k个二元组,使得剩下的 最大。
·
2015-11-11 17:09
test
POJ
2976
id=
2976
01分数规划问题,可以舍掉k组 01分数规划用于解决的经典问题是最优比率生成树 解法见http://www.cnblogs.com/lotus3x/archive/2009/03/
·
2015-11-11 17:15
poj
zoj
2976
Light Bulbs
ZOJ Problem Set -
2976
Light Bulbs Time Limit: 1 Second Memory Limit:
·
2015-11-11 13:25
LBS
【集训笔记】计算几何【HDOJ2036【HDOJ1086【HDOJ1115【HDOJ1147【HDOJ1392 【ZOJ
2976
改革春风吹满地 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 16889 Accepted Submission(s): 8636 Problem Description “ 改革春风吹满地, 不会AC没关系
·
2015-11-11 06:50
ZOJ
poj
2976
Dropping tests 0/1分数规划
0/1分数规划问题,用二分解决!! 代码如下: #include<iostream> #include<stdio.h> #include<algorithm> #include<iomanip> #include<cmath> #include<cstring> #define pi
·
2015-11-08 15:15
test
01分数规划POJ
2976
(简单模板题)
Dropping tests Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7276 Accepted: 2523 Description In a certain course, you take n
·
2015-11-06 07:59
poj
poj
2976
Dropping tests
Dropping tests Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4559 Accepted: 1542 Description In a certain course, you take n tests. If you get ai out of bi
·
2015-11-03 22:07
test
POJ
2976
Dropping tests【二分 最大化平均值】
题意:定义最大平均分为 (a1+a2+a3+---+an)/(b1+b2+---+bn),求任意去除k场考试的最大平均成绩 和挑战程序设计上面的最大化平均值的例子一样 判断是否存在x满足条件 (a1+a2+a3+---+an)/(b1+b2+---+bn)>=x 把这个不等式变形就得到 E(ai-x*bi )>=0 所以可以对ai-x*bi降序排序,取前n-k个,看它们的和是
·
2015-11-03 21:56
test
POJ
2976
Dropping tests——01分数规划——Pku
2976
什么是01分数规划: 给出n个分数ai/bi,选出m个(m<=n)使得∑(ai)/∑(bi){其中i是被选出的分数编号}达到最大值。 01 分数规划的两种方法: 1、二分法 二分一个答案k,令ci=ai-k*bi,并将ci排序,选出最大的m个,如果∑(ci){1<=i<=m}>=0,那么提高答案k的下界,否则降低上界,直到k的精度满足要求为止。 2
·
2015-11-02 17:29
test
POJ
2976
Dropping tests
Original ID:
2976
64-bit integer IO format: %lld Java cl
·
2015-11-01 15:38
test
POJ
2976
Dropping tests 01分数规划
给出n(n<=1000)个考试的成绩ai和满分bi,要求去掉k个考试成绩,使得剩下的∑ai/∑bi*100最大并输出。 典型的01分数规划 要使∑ai/∑bi最大,不妨设ans=∑ai/∑bi,则∑ai-ans*∑bi=0。 设f[ans]=∑ai-ans*∑bi,我们要求一个ans的最大值,使得存在一组解,满足f[ans]=0,而其他的任意解都有f[ans]<=0(如果f[an
·
2015-11-01 14:44
test
pku
2976
Dropping tests 01分数规划
id=
2976
题意: 给定A数组B数组,从中选择N-K个使得R最大,输出Round(100*R); 思路: 我是根据szz给的这个链接学习的,感觉讲的不错:http://lghjx.573114
·
2015-10-31 11:49
test
POJ-
2976
Dropping tests 01分数规划
id=
2976
很典型的01分数规划,sort+二分即可。
·
2015-10-31 11:23
test
专题:01分数规划
poj
2976
普通的01分数规划 大意:给定A数组B数组,从中选择N-K个使得R最大,输出Round(100*R); #include <iostream> #include
·
2015-10-31 08:29
规划
和SIP有关的RFC
nbsp; The PINT Service Protocol: Extensions to SIP and SDP for IP Access to Telephone Call ServicesRFC
2976
&
·
2015-10-30 14:50
IP
POJ
2976
Dropping tests (0/1分数规划)
Dropping tests Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4654 Accepted: 1587 Description In a certain course, you take n
·
2015-10-27 13:58
test
POJ
2976
Dropping tests 最大化平均值(二分)
id=
2976
题目大意:n场测试,每场测试bi道题,答对其中的ai道,最终的得分为∑ai/∑bi,现在可以从中除去k场测试的成绩,使得最终的得分最大。
AC_Gibson
·
2015-10-14 12:45
二分&三分
POJ
2976
Dropping tests 最大化平均值(二分)
id=
2976
题目大意:n场测试,每场测试bi道题,答对其中的ai道,最终的得分为∑ai/∑bi,现在可以从中除去k场测试的成绩,使得最终的得分最大。
AC_Gibson
·
2015-10-14 12:00
poj
2976
Dropping tests 【0-1分数规划】
DroppingtestsTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 7828 Accepted: 2739DescriptionInacertaincourse,youtake n tests.Ifyouget ai outof bi questionscorrectontest i,yourcumulativeaverageis
chenzhenyu123456
·
2015-09-01 12:00
POJ3111--K Best
自己留k件,使得k件的价值和除以k件的重量和最大,也就是单位重量的价值最大分析:和POJ
2976
一个道理,传送门http://blog.csdn.net/hhhhhhj123/article/details
hhhhhhj123
·
2015-08-22 22:00
POJ
2976
--Dropping tests
题目大意:一共有N场考试,每场对a题,每场一共有b题,我们可以去掉k场的成绩,使得最后的正确率最大分析:肯定是想着贪心去掉每场正确率最小的k场,但是b有可能是0,所以排除了这种策略。换一种思路,既然无法用除法,我们就用乘法,当全局的正确率为x时,每场的a-x*b,表示就是每场额外对的题目,可正可负,很明显去掉那些拖后腿的场次,正确率就能增大。所以,可以在我们假设的正确率为x的情况下,对每场按a-x
hhhhhhj123
·
2015-08-22 22:00
POJ
2976
Dropping tests (分数规划)
传送门今天在看Amber神犇的《最小割模型在信息学竞赛中的应用》的时候看到了分数规划这玩意,然后就小水了一发(虽然这道题和最小割并没有什么关系)。Droppingtests是一道裸的01分数规划,大意就是给出n个分数,在里面选出n-k个要求这些分数分子加分子:分母加分母最大。关于分数规划的介绍,我觉得[Algorithm]01分数规划——Update:2012年7月27日这篇文章写得相当不错上一下
geng4512
·
2015-08-05 16:00
算法
poj
哈理工2015 暑假训练赛 zoj
2976
Light Bulbs
LightBulbsTimeLimit:2000MS MemoryLimit:65536KB 64bitIOFormat:%lld&%lluSubmitStatusPracticeZOJ
2976
DescriptionWildleopardhadfalleninlovewithhisgirlfriendfor20years.Hewantedtoendthelongmatchforthei
研发之道
·
2015-08-02 22:41
哈理工赛事题解
zoj
acm
编程
算法
python urlparse模块的实用手册
urlparse cve = 'CVE-2012-2143' path = '/' + cve + '.html' cveUrl = "http://cve.scap.org.cn/CVE-2015-
2976
magicpwn
·
2015-07-27 13:45
urlparse模块
POJ
2976
Dropping tests(贪心+二分)
Descriptionn场考试中分别答对ai题,总题数分别为bi,允许去掉k场考试,求能达到的最高准确率Input多组用例,每组用例第一行为两个整数n和k分别表示考试次数和可去考试次数,第二行为每次考试答对的题数,第三行为每次考试的总题数,以n=k=0结束输入Output对于每组用例,输出去掉k次考试后的最高准确率SampleInput31502516421279567900SampleOutpu
V5ZSQ
·
2015-07-11 20:00
POJ
2976
Dropping tests (最大化平均值)
题目链接:clickhere~~【题目大意】给你n个分数的值,要求最小不选k个,使得最后分数相加结果平均值最大【解题思路】:最大化平均值:参见:clickhere~~代码:#include #include #include #include #include usingnamespacestd; constintN=1e5+10; constdoubleeps=1e-8; doubley[N],
u013050857
·
2015-06-04 16:00
ACM
最大化平均值
poj
2976
--Dropping tests(0-1分数规划)
poj
2976
:题目链接题目大意:给出n个对,可以从中最多排除k个对,求∑a/∑b的最大值。
u013015642
·
2015-05-26 19:00
POJ
2976
Dropping tests (01分数规划+二分)
DroppingtestsTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 7360 Accepted: 2558DescriptionInacertaincourse,youtake n tests.Ifyouget ai outof bi questionscorrectontest i,yourcumulativeaverageis
u013068502
·
2015-05-16 09:00
poj
POJ
2976
Dropping tests、3111 K Best (二分搜索)
DroppingtestsTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 7327 Accepted: 2548DescriptionInacertaincourse,youtake n tests.Ifyouget ai outof bi questionscorrectontest i,yourcumulativeaverageis
lwt36
·
2015-05-13 17:00
POJ
2976
Dropping tests (01分数规划)
题目地址:POJ
2976
关于01分数规划的详细介绍都在这里了,传送门。
u013013910
·
2015-04-24 11:00
编程
算法
ACM
01分数规划
POJ
2976
Dropping tests(二分)
id=
2976
题意:给定大小为n的两个数组a,b;设ans=sigma{a[i]/b[i].1=x=>sigba{a[i]}>=sigma{b[i]}*x;=>sigba{a[i]-b[i]*x}>=0
u013790563
·
2015-04-03 18:00
POJ
2976
Dropping tests(初遇0,1分数规化)
题目大意就 给定n个二元组(a,b),扔掉k个二元组,使得剩下的a元素之和与b元素之和的比率最大。关于0,1分数规划这个文章介绍的不错http://blog.csdn.net/hhaile/article/details/888365201分数规划问题:给定两个数组,a[i]表示选取i的收益,b[i]表示选取i的代价。如果选取i,定义x[i]=1否则x[i]=0。每一个物品只有选或者不选两种方案,
kalilili
·
2015-02-08 09:00
POJ
2976
Dropping tests
DescriptionInacertaincourse,youtakentests.Ifyougetaioutofbiquestionscorrectontesti,yourcumulativeaverageisdefinedtobe.Givenyourtestscoresandapositiveintegerk,determinehowhighyoucanmakeyourcumulativeav
gaoxiangnumber1
·
2015-01-30 11:00
poj
POJ
2976
/ZOJ 3068 Dropping tests 01分数规划
卡精度的01分数规划...DroppingtestsTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 6464 Accepted: 2230DescriptionInacertaincourse,youtake n tests.Ifyouget ai outof bi questionscorrectontest i,yourcumula
u012797220
·
2014-11-24 09:00
[POJ
2976
]Dropping tests(0-1分数规划)
id=
2976
题目大意:给你n个物品的a值和b值,要你从中丢掉k个(或者说选择n-k个)物品,使得剩下的物品的最大题目思路(下面思路转自http://blog.csdn.net/neofung/article
qpswwww
·
2014-10-30 18:00
poj
2976
drop texts(二分搜索)
题目链接:点击打开链接二分搜索答案。若某些a[i]的和/某些b[i]的和>=x; 则某些a[i]的和-这些b[i]*x的和>=0;这样只要从大到小选n-k个a[i]-b[i]*x求和,如果和大于等于0就可行(这个公式其实很好理解)根据这个公式去2分搜索答案即可代码:#include #include #include #defineeps1e-7 #include usingnamespacest
Baoli1008
·
2014-09-18 13:00
二分搜索
POJ
2976
,3111 01分数规划
转自魏神:题目大意就 给定n个二元组(a,b),扔掉k个二元组,使得剩下的a元素之和与b元素之和的比率最大题目求的是max(∑a[i]*x[i]/(b[i]*x[i])) 其中a,b都是一一对应的。x[i]取0,1 并且 ∑x[i]=n-k;那么可以转化一下。 令r= ∑a[i]*x[i]/(b[i]*x[i]) 则必然∑a[i]*x[i]- ∑b[i]*x[i]*r=0;(条件1) 并且任意的
u011466175
·
2014-09-04 15:00
poj
2976
Dropping tests,二分
poj
2976
Droppingtests题意同poj3111 (只有一点点区别)#include #include #include usingnamespacestd; constintmaxn=1000
yew1eb
·
2014-08-21 16:00
Sofia-SIP辅助文档六 - Sofia-SIP中的SIP和SDP特性
RFC3261RFC2617RFC3262RFC3263RFC3265RFC2806RFC
2976
RFC3311RFC3313RFC3323RFC3326RFC3325
Neohan
·
2014-08-20 20:00
源代码
voip
SIP
POJ
2976
Dropping tests
01分数规划,看了这个博客好像懂了一点~链接在此题目大意:给出n个a和b,让选出n-k个使得(sigmaa【i】)/(sigmab【i】)最大解题思路:按照01分数规划的正常思路构造D数组,二分求值。下面是代码:#include #include #include #include #include #include #include #include #include #include #inc
lin375691011
·
2014-08-11 09:00
数学
poj
刷题
上一页
1
2
3
4
下一页
按字母分类:
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
其他