- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一个梦幻足球网络应用程序构建一个“阵容优化器”,我被困在一个特定的部分上。
我正在尝试根据我的 sql 表中的“estimated_points”列提取“最佳预计阵容”,但我需要将阵容保持在一定的工资上限下,即 100 美元。
我需要填写15个位置,如下(位置ID后跟位置标签,每个位置的玩家数):
1 (goalkeepers): 2
2 (defenders): 5
3 (midfielders): 5
4 (forwards): 3
11 名球员将进入首发阵容,而另外 4 名球员将坐在替补席上。
我在尝试填补每个位置时遇到困难,同时又要将整个团队的值(value)保持在 100 美元的最高价格以下。很明显,每个玩家都有自己的价格。
这是我现在的 sql 查询:
SELECT
id AS player_id,
first_name,
last_name,
position,
estimated_points_this,
price
FROM
players
ORDER BY estimated_points_this DESC, price ASC
所以现在我正在遍历所有结果,跟踪我拥有的每个位置有多少球员,以及我的球队总值(value)。如果我在该位置的玩家数量达到最大值,或者当前团队总值(value)将超过 100 美元的最大团队值(value),那么我将跳过并移动到下一个玩家并对他们进行相同的检查。
我遇到的问题是,一个位置会被昂贵的球员填满——比如如果我最终用花费 6.4 美元的球员填满所有 5 个后卫位置,那么我还有 68 美元可以雇用另外 10 名球员,依此类推,所以我最终总是只有 12-13 名球员,因为在某个时候,每个球员都会将球队值(value)置于我的最高工资上限之上。
游戏中没有低于 3.9 美元的玩家,所以如果我的阵列中有 12 名玩家并且我的团队总值(value)为 97.8 美元左右,就不可能再有玩家了,因为那里预算中只剩下 2.2 美元。
我听说过一些关于背包问题的信息,但我不知道如何在我的案例中用 PHP 实现它,或者这是否是正确的方法。我需要想办法在低价球员和高价球员之间取得良好的平衡,以在不超过工资帽的情况下填满整个 15 人阵容。
我是否需要在每个查询中按位置一次选择一名球员,并在循环中对每个球员进行一些检查,而不是将所有球员拉入一个查询?任何想法或见解将不胜感激。
最佳答案
我有一个类似的问题,我试图这样解决它:它不是背包,但它可以工作!
背包.php:
$lineup = new LineUp();
$lineup->setSystem($system);
$lineup->budget = $budget;
$gks = getMinPlayer(POS_GK, $lineup->gk, $where, 1);
$defs = getMinPlayer(POS_DEF, $lineup->def, $where, 1);
$mfs = getMinPlayer(POS_MF, $lineup->mf, $where, 2);
$fors = getMinPlayer(POS_FOR, $lineup->for, $where, 1);
// ALL
$players = new Players();
$players->addPlayers($gks);
$players->addPlayers($defs);
$players->addPlayers($mfs);
$players->addPlayers($fors);
$steps = 0;
$bestteam = new Players();
$maxvalue = -5;
$squad = new LineUp();
$value = knapSack($players, $squad, 0, '');
echo '<h2>KnapSack ('.$steps.'): ' . $value . '</h2>';
echo "<h3>".$bestteam->costs()." Mio. € - ".$bestteam->points()." P</h3>";
echo $bestteam->getInfo('Best');
api_knapsack.php:
define("POS_GK", 1);
define("POS_DEF", 2);
define("POS_MF", 3);
define("POS_FOR", 4);
// Aufstellung: Z.B.: 1-3-5-2
define("SYS_352", 0);
define("SYS_451", SYS_352 + 1);
define("SYS_442", SYS_451 + 1);
define("SYS_433", SYS_442 + 1);
define("SYS_343", SYS_433 + 1);
class Players {
public $player = array();
function addPlayers($players) {
$this->player = array_merge( $this->player, $players->player);
}
function setPlayers($players) {
$this->player = array();
$this->addPlayers($players);
}
function costs() {
$euro = 0;
$count = count($this->player);
for ($i=0; $i < $count; $i++) {
if($this->player[$i]->lineup == 1) {
$euro += $this->player[$i]->euro;
}
}
return $euro;
}
function points() {
$points = 0;
$count = count($this->player);
for ($i=0; $i < $count; $i++) {
if($this->player[$i]->lineup == 1) {
$points += $this->player[$i]->points;
}
}
return $points;
}
function addToTeam($no) {
$this->player[$no]->lineup = 1;
}
function getPlayer($caption) {
$count = count($this->player);
$result = "<h2>$caption ($count):</h2>";
$result .= '<table class=\"striped\"><tr><th>Name</th><th>Pt.</th><th>Euro</th><th>Pos.</th><th>Club</th><th>LineUp</th></tr>';
for ($i=0; $i < $count; $i++) {
$result .= "<tr>".$this->player[$i]->getInfoRow()."</tr>";
}
$result .= "</table>";
return $result;
}
function getInfo($caption) {
$count = count($this->player);
$inc = 0;
$playerstext = "";
for ($i=0; $i < $count; $i++) {
if($this->player[$i]->lineup == 1) {
$inc++;
$playerstext .= "<tr>" . $this->player[$i]->getInfoRow() . "</tr>";
}
}
$result = "<h2>$caption ($inc):</h2>";
$result .= '<table class="striped"><tr><th>Name</th><th>Pt.</th><th>Euro</th><th>Pos.</th><th>Club</th><th>LineUp</th></tr>';
$result .= $playerstext;
$result .= "</table>";
return $result;
}
function getInfoCount($lineup, $pos) {
$result = "<h3>";
switch ($pos) {
case POS_GK:
$result .= "Goalkeeper ($lineup->gk): ";
break;
case POS_DEF:
$result .= "Defense ($lineup->def): ";
break;
case POS_MF:
$result .= "Midfield ($lineup->mf): ";
break;
case POS_FOR:
$result .= "Forward ($lineup->for): ";
break;
}
return $result . count($this->player) . '</h3>';
}
}
class Player {
public $name; // Name
public $points; // Expected Points
public $euro; // Cost
public $position; // Position
public $club;
public $lineup; // Is Player positioned in team? 0/1
function __construct($name) {
$this->name = $name;
$this->points = 0;
$this->euro = 0;
$this->position = 0;
$this->club = 0;
$this->lineup = 0;
}
function getInfoRow() {
return "<td>$this->name</td>" .
"<td>$this->points</td>" .
"<td>$this->euro</td>" .
"<td>$this->position</td>" .
"<td>$this->club</td>" .
"<td>$this->lineup</td>";
}
}
class LineUp {
public $gk; // Goalkeeper
public $def; // Defense
public $mf; // Midfield
public $for; // Forward
public $budget;
function __construct() {
$this->reset();
}
function setSystem($system)
{
$this->gk = 1;
$this->def = 3;
$this->mf = 5;
$this->for = 2;
switch ($system) {
case SYS_451:
$this->def = 4;
$this->mf = 5;
$this->for = 1;
break;
case SYS_442:
$this->def = 4;
$this->mf = 4;
$this->for = 2;
break;
case SYS_433:
$this->def = 4;
$this->mf = 3;
$this->for = 3;
break;
case SYS_343:
$this->def = 3;
$this->mf = 4;
$this->for = 3;
break;
}
}
function reset() {
$this->gk = 0;
$this->def = 0;
$this->mf = 0;
$this->for = 0;
$this->budget = 0;
}
function addPlayer($player) {
$this->budget = $this->budget + $player->euro;
switch ($player->position) {
case POS_GK:
$this->gk++;
break;
case POS_DEF:
$this->def++;
break;
case POS_MF:
$this->mf++;
break;
case POS_FOR:
$this->for++;
break;
}
}
function full($lineup) {
return
($this->gk == $lineup->gk) and
($this->def == $lineup->def) and
($this->mf == $lineup->mf) and
($this->for == $lineup->for);
}
function fuller($lineup) {
return
($this->gk > $lineup->gk) or
($this->def > $lineup->def) or
($this->mf > $lineup->mf) or
($this->for > $lineup->for);
}
function costly($lineup) {
return (($this->budget) > ($lineup->budget));
//var_dump($this);
//var_dump($lineup);
//return true;
}
}
function getMinPlayer($pos, $count, $where, $add) {
$players = new Players();
$whereClause = "PositionID = $pos " . $where;
$sql = "Select B.* from (Select * from View_Kicker where $whereClause";
$sql .= " order by Punkte desc limit 0, " . ($count + $add);
$sql .= ") B order by B.Euro desc";
$erg = mysql_query($sql);
while ($adr = mysql_fetch_array($erg)) {
$player = new Player($adr['Name']);
$player->points = $adr['Punkte'];
$player->euro = $adr['Euro'];
$player->position = $pos;
$players->player[] = $player;
}
return $players;
}
function getPlayer($pos, $count, $where) {
$players = new Players();
$whereClause = "PositionID = $pos " . $where;
$sql = "Select * from View_Kicker where $whereClause";
$sql .= " and PunkteVJ > 0";
$sql .= " order by Euro";
$erg = mysql_query($sql);
while ($adr = mysql_fetch_array($erg)) {
$euro = $adr['Euro'];
$points = $adr['PunkteVJ'];
$sql2 = mysql_query("Select count(*) as Anz from View_Kicker where $whereClause and Euro < $euro and PunkteVJ > $points");
$erg2 = mysql_fetch_object($sql2);
$no = $erg2->Anz;
if ($no < $count) {
$player = new Player($adr['Name']);
$player->points = $adr['PunkteVJ'];
$player->euro = $adr['Euro'] * 10;
$player->position = $pos;
$players->player[] = $player;
}
}
return $players;
}
/**
* @param $players - all players to handle
* @param $squad - actual lineup ( how many players are in team)
* @param $count - whicht player to handle
* @param $deep - only for output
* @return int|mixed
*/
function knapSack($players, $squad, $count, $deep) {
global $lineup; // global lineup like 3-5-2 and 42.5mio budget
global $steps; // only for output: method requests
global $bestteam;
global $maxvalue;
$steps++;
//echo '<br>No.: ' . $steps . ' ('.$deep.')';
// Last Child in Tree
if ($count > count($players->player) - 1) {
//echo ' -3';
return -3;
}
// actual Team to expensive
if ($squad->costly($lineup)) {
//echo ' -2';
return -2;
}
// Team to full
if ($squad->fuller($lineup)) {
//echo ' -1';
return -1;
}
// PERFECT TEAM
if ($squad->full($lineup)) {
$points = $players->points();
if ($points > $maxvalue) {
$maxvalue = $points;
$bestteam->setPlayers($players);
}
return $points;
}
// To many players from a club
//TODO
$player = $players->player[$count];
// echo '- handle '.$player->name.' ('.$count.')<br>';
$newplayers = unserialize(serialize($players));
$newsquad = unserialize(serialize($squad));
$newplayers->addToTeam($count);
$newsquad->addPlayer($player);
return max(
knapSack($players, $squad, $count + 1, $deep . '0'), // Add Player NOT to team
knapSack($newplayers, $newsquad, $count + 1, $deep . '1') // Add Player to team
);
}
现在它可以工作了,但是它不能处理浏览器中的大数据[播放器]。如果你愿意,我们可以一起改进算法。
关于用于webapp的PHP背包式梦幻运动功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44029337/
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!