すべてチェック-Scala
推定スコア:2m ^ n
私は各マシンから始めて、すべてのタスクを反復処理して、締め切りに間に合ったさまざまなマシンでのタスクを通じてすべての順列を作成します。すべてが時間内にある場合、2つのマシンと3つのタスクで9つの可能なパスが得られます。(m ^ n)その後、コストが最も低いパスを選択します。
入力は次のように構成されています(->はパーツを説明するため、入力しないでください)。
M_1:5 3 5 4;M_2:4 2 7 5 --> time
M_1:5 4 2 6;M_2:3 7 3 3 --> cost
M_1:M_1}0 M_2}1;M_2:M_1}2 M_2}0 --> switch itme
M_1:M_1}0 M_2}2;M_2:M_1}1 M_2}0 --> switch cost
5 10 15 20 --> deadlines
そしてここにコードがあります:
package Scheduling
import scala.io.StdIn.readLine
case class Cost(task: Map[String, List[Int]])
case class Switch(machine: Map[String, Map[String, Int]])
case class Path(time: Int, cost: Int, machine: List[String])
object Main {
def main(args: Array[String]) {
val (machines, cost_time, cost_money, switch_time, switch_money, deadlines) = getInput
val s = new Scheduler(machines, cost_time, cost_money, switch_time, switch_money, deadlines)
s.schedule
}
def getInput(): (List[String], Cost, Cost, Switch, Switch, List[Int]) = {
val cost_time = Cost(readLine("time to complete task").split(";").map{s =>
val parts = s.split(":")
(parts(0) -> parts(1).split(" ").map(_.toInt).toList)
}.toMap)
val cost_money = Cost(readLine("cost to complete task").split(";").map{s =>
val parts = s.split(":")
(parts(0) -> parts(1).split(" ").map(_.toInt).toList)
}.toMap)
val switch_time = Switch(readLine("time to switch").split(";").map{s =>
val parts = s.split(":")
(parts(0) -> parts(1).split(" ").map{t =>
val entries = t.split("}")
(entries(0) -> entries(1).toInt)
}.toMap)
}.toMap)
val switch_money = Switch(readLine("time to switch").split(";").map{s =>
val parts = s.split(":")
(parts(0) -> parts(1).split(" ").map{t =>
val entries = t.split("}")
(entries(0) -> entries(1).toInt)
}.toMap)
}.toMap)
val deadlines = readLine("deadlines").split(" ").map(_.toInt).toList
val machines = cost_time.task.keys.toList
(machines, cost_time, cost_money, switch_time, switch_money, deadlines)
}
}
class Scheduler(machines: List[String], cost_time: Cost, cost_money: Cost, switch_time: Switch, switch_money: Switch, deadlines: List[Int]) {
def schedule() {
var paths = List[Path]()
var alternatives = List[(Int, Path)]()
for (i <- machines) {
if (cost_time.task(i)(0) <= deadlines(0)) {
paths = paths ::: List(Path(cost_time.task(i)(0), cost_money.task(i)(0), List(i)))
}
}
val allPaths = deadlines.zipWithIndex.tail.foldLeft(paths)((paths, b) => paths.flatMap(x => calculatePath(x, b._1, b._2)))
if (allPaths.isEmpty) {
println("It is not possible")
} else {
println(allPaths.minBy(p=>p.cost).machine)
}
}
def calculatePath(prev: Path, deadline: Int, task: Int): List[Path] = {
val paths = machines.map(m => calculatePath(prev, task, m))
paths.filter(p => p.time <= deadline)
}
def calculatePath(prev: Path, task: Int, machine: String): Path = {
val time = prev.time + switch_time.machine(prev.machine.last)(machine) + cost_time.task(machine)(task)
val cost = prev.cost + switch_money.machine(prev.machine.last)(machine) + cost_money.task(machine)(task)
Path(time, cost, prev.machine :+ machine)
}
}
後ろから始めるというアイデアもありました。時間が最短であれば、いつでも最低コストのマシンを選ぶことができるので、以前の期限と新しい期限との差が生じます。しかし、より良いコストのタスクが最後の期限が設定された時間より長くかかる場合、それは最大ランタイムを減少させません。
更新
======
これは別の設定です。時間:
M_1 2 2 2 7
M_2 1 8 5 10
費用:
M_1 4 4 4 4
M_2 1 1 1 1
スイッチ時間:
M_1 M_2
M_1 0 2
M_2 6 0
スイッチコスト:
M_1 M_2
M_1 0 2
M_2 2 0
締め切り:
5 10 15 20
私のプログラムへの入力として:
M_1:2 2 2 7;M_2:1 8 5 10
M_1:4 4 4 4;M_2:1 1 1 1
M_1:M_1}0 M_2}2;M_2:M_1}6 M_2}0
M_1:M_1}0 M_2}2;M_2:M_1}2 M_2}0
5 10 15 20
これには2つのソリューションがあります:時間:18、コスト:15、パス:List(M_1、M_1、M_1、M_2)時間:18、コスト:15、パス:List(M_2、M_1、M_1、M_1)
これは、これをどのように処理すべきかという問題を提起します。すべて印刷する必要がありますか、それとも1つだけですか?そして、時間が異なる場合はどうなりますか?コストが最も低く、締め切りを逃していないか、それとも時間が最も短いものである必要がありますか?