博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2976 Dinkelbach迭代法
阅读量:5021 次
发布时间:2019-06-12

本文共 719 字,大约阅读时间需要 2 分钟。

#include
#include
#include
#include
using namespace std;const int maxn = 1005;struct node{ double a,b,c;}Node[maxn];//double a[maxn],b[maxn],c[maxn],d[maxn];int m,n,k;double mid;int cmp(const void *i,const void *j){ return (*(struct node *)i).c < (*(struct node *)j).c ? 1 : -1;}int main(){ //if(freopen("input.txt","r",stdin)== NULL) {printf("Error\n"); exit(0);} while(cin>>n>>k && n){ m = n - k; for(int i=0;i
>Node[i].a; for(int i=0;i
>Node[i].b; double p=0.5; while(true){ for(int i=0;i

 

转载于:https://www.cnblogs.com/acmdeweilai/archive/2013/05/20/3089145.html

你可能感兴趣的文章
查看Linux信息
查看>>
Python中sys模块sys.argv取值并判断
查看>>
【详记MySql问题大全集】四、设置MySql大小写敏感(踩坑血泪史)
查看>>
并查集
查看>>
ubuntu 11.04下android开发环境的搭建!
查看>>
Bzoj 3343: 教主的魔法
查看>>
括号序列(栈)
查看>>
一件趣事
查看>>
DevExpress控件TExtLookupComboBox实现多列模糊匹配输入的方法
查看>>
atom 调用g++编译cpp文件
查看>>
H3C HDLC协议特点
查看>>
iptables 网址转译 (Network address translation,NAT)
查看>>
ios __block typeof 编译错误解决
查看>>
android 插件形式运行未安装apk
查看>>
ios开发之 manage the concurrency with NSOperation
查看>>
Android权限 uses-permission
查看>>
NSEnumerator用法小结
查看>>
vim如何配置go语言环境
查看>>
机器学习好网站
查看>>
python 中的 sys , os 模块用法总结
查看>>