모두 확인-스칼라
예상 점수 : 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
시간, 18, 비용 : 15, 경로 : List (M_1, M_1, M_1, M_2) 시간 : 18, 비용 : 15, 경로 : List (M_2, M_1, M_1, M_1)
이것이 어떻게 처리되어야하는지에 대한 의문을 제기합니다. 모두 인쇄해야합니까 아니면 하나만 인쇄해야합니까? 시간이 다를 경우 어떻게해야합니까? 비용이 가장 적게 들고 마감 기한이 충분하지 않습니까?