代写python代码一般多少钱_代写CO 353课程作业、代做Python程序设计作业、代写Python语言作业...

代写CO 353课程作业、代做Python程序设计作业、代写Python语言作业

日期:2020-03-17 11:22

CO 353 - Homework assignment 4 Winter ’20 Page 1

CO 353 - Winter ’20

Homework assignment #4:

Instructions:

? You may use any result proved in class directly, but you should be explicit about which

result you are using.

? You may collaborate with your classmates, but please acknowledge your collaborators by

writing their names in your homework.

? Any source of help other than the ones stated above are considered cheating.

Question 1 (20 points)

Solve the following IP by branch-and-bound:

max 3x1 + 5x2

s.t. ?4x1 + 3x2 ≤ 6

3x1 + 2x2 ≤ 6

x1, x2 ≥ 0 and integer

Instructions:

? Start with zbest = ?∞ and xbest undefined.

? Include a drawing of the branch-and-bound tree, clearly identifying on each node the corresponding

subproblem IPo, IP1, etc.

? The numbering of the subproblems must correspond to the order in which the branch-and-bound

nodes were explored, i.e. the order must be IPo, IP1, IP2, . . ..

? For each node of the branch-and-bound tree, solve the LP relaxation using Python/Gurobi. There

is no need to provide the code, just write down the optimal solution to the LP relaxation and the

optimal value

? For each node of the branch-and-bound tree, also write down the current value of zbest after the

node has been explored (i.e. LP relaxation solved and any branching/fathoming decision made)

? For each pruned node, provide the reason why it was pruned

? NOTE: You can obviously use Python/Gurobi to solve the IP directly. Any such answer will not

be accepted.

(a) Provide the branch-and-bound tree for the following choices:

? Whenever you have a choice of branching variable, choose the one with smallest index

? Whenever you have a choice of which subproblem to choose to process next, choose the one that

was most recently created. If you must choose between two nodes just created by branching,

choose to process first the one that imposes the ≤ constraint.

(b) Provide the branch-and-bound tree for the following choices:

? Whenever you have a choice of branching variable, choose the one with smallest value of

max{Lk, Rk}, where Lk is the value of the LP relaxation after branching on xk ≤ bx

?

k

c and Rk

is the value of the LP relaxation after branching on xk ≤ dx

?

k

e.

? Whenever you have a choice of which subproblem to choose to process next, choose the BFS

approach.

CO 353 - Homework assignment 4 Winter ’20 Page 2

Question 2 (20 points)

Consider three matroids Mi = (S, Ii) for i = 1, 2, 3 over the same ground set. Also, consider ce > 0, ?e ∈

S.

The maximum weight common independent set problem asks one to determine the set J ? S of maximum

total weight such that J ∈ I1, J ∈ I2 and J ∈ I3 (that is, J ∈ I1 ∩ I2 ∩ I3).

It is known that computing the maximum weight subset J of S that is independent in both M1 and M2

is solvable in polynomial time on |S| (provided independence can be checked in polynomial-time).

Show that computing the maximum weight J ? S such that J ∈ I1 ∩ I2 ∩ I3 is NP-hard.

Hint: Consider a reduction from the NP-complete problem called the directed hamiltonian cycle problem

on graph D = (V, A), and let M1 = (A, I1) where B ? A ∈ I1 if and only if:

? The underlying undirected graph is a forest. The underlying undirected graph is what you get when

you convert directed edges (u, v) into undirected ones {u, v}.

? and there are no two arcs in B of the form (u, v) and (v, u).

Question 3 (20 points)

Consider the following problem:

b ? ST:

Inputs:

? Undirected simple connected graph G = (V, E)

? Integers bv ≥ 0, for all v ∈ V

Output:

? YES if and only if there exists a spanning tree T of G such that |δ(v) ∩ T| ≤ bv, ?v ∈ V .

Show that b ? ST is NP-complete.

Hint: Consider a reduction from Hamiltonian Cycle (undirected version)

Question 4 (20 points)

The purpose of this question is for you to provide an optimal solution to the knapsack problem:

max Pn

j=1

cjxj

s.t. Pn

j=1

ajxj ≤ b

x ∈ {0, 1}

n

(1)

Input and output:

The input is n and the positive integer coefficients c ∈ Z

n, a ∈ Z

n, b ∈ Z. They are given in a file of the

form:

n

c1 c2 c3 . . . cn

a1 a2 a3 . . . an b

A complete example is given by: . . . and corresponds to the knapsack instance:

4

7 9 2 15

3 4 1 7 10

max 7x1 + 9x2 + 2x3 + 15x4

st 3x1 + 4x2 + 1x3 + 7x4 ≤ 10

x ∈ {0, 1}

4

+.

The output file must describe an optimal solution to the given knapsack problem instance. It consists

of a single line of the form:

x

?

1 x

?

2

. . . x

?

n

In our example, a correct solution file could be:

Page 2

CO 353 - Homework assignment 4 Winter ’20 Page 3

1 0 0 1

More example input and output files will be posted online.

Filename

You must implement your code in a file called knapbb{userid}.py, where {userid} must be replaced by

your uwaterloo numeric ID. For instance, if your id is 12345, your file must be called knapbb12345.py.

Running the code

Your code must take exactly two arguments. The first argument is the name of a file containing the

input instance. The second argument is the name of a file where the output is to be written.

Your code must be implemented in Python 3 and must run by executing the command (obviously replacing

the .py file name by the above specified file name):

python knapbb12345.py input.txt output.txt

Submitting the code

Please submit the code via Dropbox on learn.uwaterloo.ca by the homework deadline.

Libraries and code writing

You must implement all your code. You may use import sys and the sort functionality of python, and

import gurobipy. Any other import is not allowed. You may consult with other sources regarding

basic python syntax, but not how to code your homework.

Also, your code should be understandable, so please add comments on your code to make sure the graders

understand what is the purpose of each part of the code. Marks may be deducted for a code that is not

understandable.

Your code MUST use the Python/Gurobi interface. It cannot just try and enumerate solutions, use

dynamic programming or any other alternative method.

Caution regarding grading

Please stick to the above guidelines. If you deviate from these guidelines, you will get marks deducted,

even if your implementation is perfect.

Page 3

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/472869.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JNative用法注意事项

公司要做个跟设备打交道的web系统,需要java调用dll。搞java的同事说JNative看起来挺好使的,找俺帮忙调通。用的是1.3.1版本 环境设置。 JNative的调试信息需要打开才能更清楚些,要不总是说没加载库,跟没说一样。 System.setProper…

虚拟主机不支持mysql_虚拟主机能用mysql么

原标题:虚拟主机能用mysql么虚拟主机能用mysql么?虚拟主机能用mysql的。MySQL数据库一般与Linux系统搭配使用较多,绝大部分的服务商都会提供支持MySQL数据库的虚拟主机产品。MySQL是一种关系数据库管理系统,关系数据库将数据保存在…

python3知识点汇总_35个高级Python知识点总结

No.1 一切皆对象 众所周知,Java中强调“一切皆对象”,但是Python中的面向对象比Java更加彻底,因为Python中的类(class)也是对象,函数(function)也是对象,而且Python的代码和模块也都是对象。 Py…

LeetCode 1770. 执行乘法运算的最大分数(DP)

文章目录1. 题目2. 解题1. 题目 给你两个长度分别 n 和 m 的整数数组 nums 和 multipliers ,其中 n > m ,数组下标 从 1 开始 计数。 初始时,你的分数为 0 。 你需要执行恰好 m 步操作。在第 i 步操作(从 1 开始 计数&#x…

统计--过滤(筛选)索引的统计信息过期问题测试

基础知识普及: 对于筛选索引,MSDN如是说: 筛选索引是一种经过优化的非聚集索引,尤其适用于涵盖从定义完善的数据子集中选择数据的查询。 筛选索引使用筛选谓词对表中的部分行进行索引。 与全表索引相比,设计良好的筛选…

IDEA连接mysql出现时区错误_idea连接数据库时区错误

错误界面IDEA连接mysql,地址,用户名,密码,数据库名,全都配置好了,点测试连接,咔!不成功!界面是这样的,翻译过来就是:服务器返回无效时区。进入“高…

springboot listener_Springboot 监听redis key的过期事件

项目中常常会碰到这样的需求,用户下订单后,30分钟未完成自动取消订单的功能。有人说这个简单呀,写个定时任务就搞定了。除了定时任务之外,难道就没有其他的方法来实现吗?有--Redis 的键空间通知事件。在Redis 2.8.0之后…

LeetCode 1771. 由子序列构造的最长回文串的长度(最长回文子序)

文章目录1. 题目2. 解题1. 题目 给你两个字符串 word1 和 word2 ,请你按下述方法构造一个字符串: 从 word1 中选出某个 非空 子序列 subsequence1 。从 word2 中选出某个 非空 子序列 subsequence2 。连接两个子序列 subsequence1 subsequence2 &…

python牛顿法计算平方根_常用的平方根算法详解与实现

本文从属于笔者的数据结构与算法系列文章。 SquareRoot 平方根计算一直是计算系统的常用算法,本文列举出几张简单易懂的平方根算法讲解与实现。其中Java版本的代码参考这里 Reference Babylonian:巴比伦算法/牛顿法 巴比伦算法可能算是最早的用于计算$sqrt{S}$的算法…

mysql主辅同步报错_mysql数据库主辅同步Slave_IO_Running,Slave_SQL_Running错误

Slave_IO_Running:连接到主库,并读取主库的日志到本地,生成本地日志文件Slave_SQL_Running:读取本地日志文件,并执行日志里的SQL命令。这个错误是出现在我重启电脑之后。从以上图片来看,我遇到的错误是第二条&#xff…

R.java文件介绍

HelloWorld工程中的R.java文件 package com.android.hellworld; public final class R { public static final class attr { } public static final class drawable { public static final int icon0x7f020000; } public static final class layou…

移动计算比移动数据更划算

learn from 从0开始学大数据(极客时间) 数据太大(PB级别),将程序发送到数据所在地方进行计算,比移动数据更划算 如何实现的: 将大规模数据存储在集群的所有服务器上,(H…

什么是spring_Spring 源码第三弹!EntityResolver 是个什么鬼?

上篇文章和小伙伴们说了 Spring 源码中 XML 文件的解析流程,本来可以继续往下走看加载核心类了,但是松哥还是希望能够慢一点,既然要学就学懂,在 XML 文件解析的过程中还涉及到一些其他的类和概念,因此我就先用几篇文章…

mysql5.7免安版配置_mysql5.7免安装版配置

JS产生随机数的几个用法!C++和java多态的区别C和java多态的区别 分类: Java2015-06-04 21:38 2人阅读 评论(0) 收藏 举报  转载自:http://www.cnblogs.com/plmnko/archive ...永远不要在Linux 执行的 10 个最危险的命令转…

简述C++程序编写的过程

学习C编程(相关C编程-基础知识篇)乃至于所有的编程语言每当你编写一个程序从编写到最后得到运行结果要经历以下一些步骤:1、用C语言编写程序用高级语言编写的程序称为“源程序”(source program)。C的源程序是以.cpp作为后缀的(cpp…

从RAID看垂直伸缩到水平伸缩的演化

learn from 从0开始学大数据(极客时间) 大规模数据存储问题: 容量问题,数据量超过磁盘容量读写速度,磁盘读写慢数据可靠性,磁盘寿命问题 RAID(独立磁盘冗余阵列) 是将多块普通磁盘…

linux安装g++编译器_Ubuntu Desktop下配置Rosetta安装教程

作者: 吴炜坤本文仅在虚拟机环境下测试,可能实际操作中会遇到不同的问题本文是新手向的安装教程,如果需要在CentOS上安装,可以参考本人其他安装教程由于许多新人朋友在学习Rosetta过程中,通常操作系统选择的都是带美丽漂亮界面便于…

mysql+inser+select_解析MySQL中INSERT INTO SELECT的使用

1. 语法介绍有三张表a、b、c,现在需要从表b和表c中分别查几个字段的值插入到表a中对应的字段。对于这种情况,可以使用如下的语句来实现:INSERT INTO db1_name (field1,field2) SELECT field1,field2 FROM db2_name上面的语句比较适合两个表的…

HDFS依然是存储的王者

learn from 从0开始学大数据(极客时间) 1. HDFS 架构 DataNode 负责数据的存储、读写,HDFS 将文件分割成若干数据块(Block),每个 DataNode 存储一部分数据块,文件就分布存储在整个 HDFS 服务器集…

DateTime和字符串转换问题

DateTime和string之间的相互转换经常碰到,可就这么简单的一个转换其中也有些需要注意的地方. 1 static void Main(string[] args)2 {3 string format "yyyy/MM/dd HH:mm:ss";4 DateTimeFormatInfo dtfi DateTimeFormatInf…