- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在内存的字典中加载了大约130个字符(如游戏角色),每个字典中的值都包含一个角色的特定数据。
这个怎么运作?每个角色有2个聊天室和22个反应。
在一个由4名成员组成的团队中,您要遍历每个角色,抓住他们的两个聊天,然后遍历其他三个角色的反应,并求和其反应的值并重复。
完成此操作后,获取两个最高值(无法重复聊天),然后将两个值总和为最终值。
尝试“伪代码”:
results = []
for character in team
for chat in chats_of_character
chat_morale = 0
for remaining_character in team
if remaining_character is not character
grab from remaining_character reactions values the value of chat and sum it
to chat_morale
add (chat_morale, character, chat) to results as a tuple
sort results list by the first value of each tuple (chat_morale)
create a new list that removes duplicates based on the third item of every tuple in results
grab the two first (which would be the highest chat_morale out of them all) and sum both
chat_morale and return the result and total_morale
def _camping(self, heroes):
results = []
for hero, data in heroes.items():
camping_data = data['camping']
for option in camping_data['options']:
morale = sum(heroes[hero_2]['camping']['reactions'][option]
for hero_2 in heroes if hero_2 != hero)
results.append( (morale, hero, option) )
"camping": {
"options": [
"comforting-cheer",
"myth"
],
"reactions": {
"advice": 8,
"belief": 0,
"bizarre-story": 1,
"comforting-cheer": 6,
...
all_heroes = self.game_data.get_all_heroes()
# Generate all possible combinations.
for combination in itertools.combinations(h.keys(), r=4):
# We want only combinations that contains for example the character 'Achates'.
if set(['achates']).issubset(combination):
# We grab the character data from the all heroes list to pass it to _camping.
hero_data = {hero: all_heroes[hero] for hero in combination}
self._camping(hero_data)
Table "public.campingcombinations"
Column | Type | Collation | Nullable | Default
--------------+---------+-----------+----------+-------------------------------------------------
id | bigint | | not null | nextval('campingcombinations_id_seq'::regclass)
team | text[] | | |
total_morale | integer | | |
Indexes:
"idx_team" gin (team)
yufinebotdev=# SELECT * FROM CampingCombinations LIMIT 5;
id | team | total_morale
--------+----------------------------------------+--------------
100001 | {achates,adlay,aither,alexa} | 26
100002 | {achates,adlay,aither,angelica} | 24
100003 | {achates,adlay,aither,aramintha} | 25
100004 | {achates,adlay,aither,arbiter-vildred} | 23
100005 | {achates,adlay,aither,armin} | 24
yufinebotdev=# EXPLAIN ANALYZE SELECT * FROM CampingCombinations WHERE team @> ARRAY['achates'] ORDER BY total_morale DESC LIMIT 50;
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=188770.50..188776.33 rows=50 width=89) (actual time=1291.841..1302.641 rows=50 loops=1)
-> Gather Merge (cost=188770.50..221774.07 rows=282868 width=89) (actual time=1291.839..1302.633 rows=50 loops=1)
Workers Planned: 2
Workers Launched: 2
-> Sort (cost=187770.47..188124.06 rows=141434 width=89) (actual time=1183.865..1183.868 rows=34 loops=3)
Sort Key: total_morale DESC
Sort Method: top-N heapsort Memory: 35kB
Worker 0: Sort Method: top-N heapsort Memory: 35kB
Worker 1: Sort Method: top-N heapsort Memory: 35kB
-> Parallel Bitmap Heap Scan on campingcombinations (cost=3146.68..183072.14 rows=141434 width=89) (actual time=119.376..1152.543 rows=119253 loops=3)
Recheck Cond: (team @> '{achates}'::text[])
Heap Blocks: exact=1860
-> Bitmap Index Scan on idx_team (cost=0.00..3061.82 rows=339442 width=0) (actual time=213.798..213.798 rows=357760 loops=1)
Index Cond: (team @> '{achates}'::text[])
Planning Time: 11.893 ms
Execution Time: 1302.707 ms
(16 rows)
yufinebotdev=# EXPLAIN ANALYZE SELECT * FROM CampingCombinations WHERE team @> ARRAY['serila'] ORDER BY total_morale DESC LIMIT 50;
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=188066.24..188072.07 rows=50 width=89) (actual time=30684.587..30746.121 rows=50 loops=1)
-> Gather Merge (cost=188066.24..224336.01 rows=310862 width=89) (actual time=30684.585..30746.110 rows=50 loops=1)
Workers Planned: 2
Workers Launched: 2
-> Sort (cost=187066.22..187454.79 rows=155431 width=89) (actual time=30369.531..30369.535 rows=37 loops=3)
Sort Key: total_morale DESC
Sort Method: top-N heapsort Memory: 36kB
Worker 0: Sort Method: top-N heapsort Memory: 35kB
Worker 1: Sort Method: top-N heapsort Memory: 36kB
-> Parallel Bitmap Heap Scan on campingcombinations (cost=3455.02..181902.91 rows=155431 width=89) (actual time=519.121..30273.208 rows=119253 loops=3)
Recheck Cond: (team @> '{serila}'::text[])
Heap Blocks: exact=47394
-> Bitmap Index Scan on idx_team (cost=0.00..3361.76 rows=373035 width=0) (actual time=771.046..771.046 rows=357760 loops=1)
Index Cond: (team @> '{serila}'::text[])
Planning Time: 7.315 ms
Execution Time: 30746.199 ms
(16 rows)
INSERT
而不是每个值仅
COPY
,它可以大大减少将值添加到表中所花费的时间,我不太确定这是否会影响任何事情,但我会提及。另一个要提到的是,我切换到运行1个vCPU和25GB SSD以及1GB RAM的服务器。
Table "public.campingcombinations"
Column | Type | Collation | Nullable | Default
--------------+---------------------+-----------+----------+-------------------------------------------------
id | bigint | | not null | nextval('campingcombinations_id_seq'::regclass)
team | character varying[] | | |
total_morale | integer | | |
Indexes:
"idx_camping_team" gin (team)
"idx_camping_team_total_morale" btree (total_morale DESC)
EXPLAIN ANALYZE SELECT * FROM CampingCombinations WHERE team @> ARRAY['yufine']::varchar[] ORDER BY total_morale DESC LIMIT 5;
QUERY PLAN
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=0.44..17.03 rows=5 width=89) (actual time=2.155..2.245 rows=5 loops=1)
-> Index Scan using idx_camping_team_total_morale on campingcombinations (cost=0.44..2142495.49 rows=645575 width=89) (actual time=2.153..2.242 rows=5 loops=1)
Filter: (team @> '{yufine}'::character varying[])
Rows Removed by Filter: 2468
Planning time: 2.241 ms
Execution time: 2.274 ms
(6 rows)
EXPLAIN ANALYZE SELECT * FROM CampingCombinations WHERE team @> ARRAY['tieria']::varchar[] ORDER BY total_morale DESC LIMIT 5;
QUERY PLAN
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=0.44..17.21 rows=5 width=89) (actual time=4396.876..8626.916 rows=5 loops=1)
-> Index Scan using idx_camping_team_total_morale on campingcombinations (cost=0.44..2142495.49 rows=638566 width=89) (actual time=4396.875..8626.906 rows=5 loops=1)
Filter: (team @> '{tieria}'::character varying[])
Rows Removed by Filter: 129428
Planning time: 0.160 ms
Execution time: 8626.951 ms
(6 rows)
EXPLAIN ANALYZE SELECT * FROM CampingCombinations WHERE team @> ARRAY['yufine', 'tieria']::varchar[] ORDER BY total_morale DESC LIMIT 5;
QUERY PLAN
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=0.43..874.29 rows=5 width=89) (actual time=24752.449..39808.550 rows=5 loops=1)
-> Index Scan using idx_camping_team_total_morale on campingcombinations (cost=0.43..1937501.21 rows=11086 width=89) (actual time=24752.444..39808.535 rows=5 loops=1)
Filter: (team @> '{yufine,tieria}'::character varying[])
Rows Removed by Filter: 439703
Planning time: 0.215 ms
Execution time: 39809.799 ms
(6 rows)
EXPLAIN ANALYZE SELECT * FROM CampingCombinations WHERE team @> ARRAY['purrgis', 'angelica']::varchar[] ORDER BY total_morale DESC LIMIT 5;
QUERY PLAN
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=0.43..821.41 rows=5 width=89) (actual time=33491.860..51059.420 rows=5 loops=1)
-> Index Scan using idx_camping_team_total_morale on campingcombinations (cost=0.43..1937501.21 rows=11800 width=89) (actual time=33491.857..51059.409 rows=5 loops=1)
Filter: (team @> '{purrgis,angelica}'::character varying[])
Rows Removed by Filter: 595184
Planning time: 0.139 ms
Execution time: 51060.318 ms
最佳答案
预计算是一个很好的优化;为了更好地处理列布局,我建议使用PostgreSQL数组列来存储团队成员。
您可以在一列中存储任意数量的名称
“包含”运算符@>
与顺序无关。即,您得到相同的
如果输入为['bar','foo'],则结果为['foo','bar']
您可以为该列编制索引以加快搜索速度,但是必须使用gin
类型
您可以扩展到其他团队规模而无需大幅更改架构。
在您的SQL / DDL中:
#simplified table definition:
create table campingcombinations (
id bigserial,
members text[],
morale int
);
create index idx_members on campingcombinations using gin ('members');
# on insert
for team in itertools.combinations(source_list, r=4):
team = [normalize(name) for name in team] #lower(), strip(), whatever
morale = some_function() #sum, scale, whatever
stmt.execute('insert into campingcombinations (members, morale) values (%s, %s)', (team, morale,))
# on select
stmt.execute('select * from campingcombinations where members @> %s order by morale desc', (team,))
for row in stmt.fetchall():
#do something
psycopg2
驱动程序可处理类型转换,但有一个陷阱:根据定义数组的方式,可能需要强制转换。对于
members varchar[]
,因此“包含”
where members @> %s::varchar[]
。通过
text[]
。如果将列定义为
text[]
,则应该没有问题。
关于python - 有效地生成所有可能的4人团队组合,其中包含130个角色中的特定角色并计算某些值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55555908/
$ flutter ios build --release 它显示多个可用的有效开发证书(您的选择将被保存): 但是它没有显示分发证书选择,不过我使用了--release标志,,, 我检查过我已经在本
我有一个 Jenkins Bitbucket 团队/项目工作。 在我的存储库中的 Jenkinsfile 中,我使用“git describe”来获取当前标签。 在我更新到最新的 Jenkins 版本
您会在新的 .NET 开发团队中实现哪些最佳实践和方法? 干杯 最佳答案 仅使用 Visual Studio 如果您需要数据库,请使用服务器(尽早减少 SQL 问题) 使用版本控制 关于c# - .N
我有 3 个表用户、团队、组。每个团队可以有多个组。每个组中都有一个或多个用户。用户可以属于多个组。您认为对所有用户使用组会更好吗(这样每个团队至少有一个名为所有用户的组)还是引入另一个表 team_
问题: 让我们考虑以下场景: 让T={t_1, t_2, ..., t_h}成为一组不同的游戏。每场比赛都是一对一的(它们是单人游戏)。 设n为players的个数,每个游戏都有一个已知的性能度量这个
我们有 5 个人在从事同一个项目,并且在 Bitbucket 中有多个 GIT 存储库。每个用户都有自己的 Bitbucket 帐户。我正在寻找拥有某种团队或组织功能的最佳实践方法,以便我们都可以在相
我们在实现 Team Foundation Build Server 时遇到了性能问题,而且我对如何加快速度没有任何想法。我们已经添加了一些 PropertyGroup 元素来提高几个步骤(SkipC
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 8年前关闭。 Improve this qu
我为我是所有者的团队 channel 设置了 Azure DevOps 连接器。它一直工作正常,但现在我需要调整一些设置,因为我不希望它宣布取消部署。因此,我打开连接器、已配置、AzureDevops
我们有一个团队机器人,可以在 MS 团队中发布消息。新对话的第一个事件总是一张自适应卡片,我们偶尔会用一张新卡片更新它。这一切正常,直到我用这个机器人组建了一个新团队。 我们正在尝试使用 Update
What do I need to install to activate this button Share Project in Eclipse?I need to transfer the pr
我创建了一个解决方案,其中包含我的所有项目,包括 Dotfuscator 项目和设置项目。 某些 Dotfuscator 项目仅对某些程序集进行了模糊处理,而不会影响它们的任何引用。 从 Visual
如何观察Variable来自一组团队 ( Variable ),以便每次 Game出现( Variable 由于游戏数组被修改而改变),数组 Team是否应该进行相应更新,例如比赛两支球队的得分、胜利
我的问题是我所有的应用程序 ID 都相同。我认为它们应该是不同的以识别它们。即使我尝试创建新的配置文件,它也不给我更改 ID 或生成新配置文件的选项。我正在尝试为我的一个应用程序设置 ICloud,我
熬夜工作到上午 1030 点并完成作业后,我决定在格式化并提交作业之前小睡一会儿。不用说,午睡变成了 5 小时的 sleep 时间。 醒来后,我将代码格式化为 java 的 eclipse googl
我是 3 个注册 iOS 开发团队的成员: 我的个人 iOS 开发者帐户。 我的企业 iOS 开发者客户团队。 我客户的 iOS 开发者客户团队。 我现在想使用 iOS Provisioning Po
目标:MS Teams 在双显示器上的可访问性行为,显示器设置为不同的比例,例如 100% 和 125%,分辨率为 1920*1080。我使用的工具是 Accessibility Insight。 问
最近注意到在 MS CRM 2011 中无法从工作流步骤创建/更新业务部门或团队。 为什么要制作它,是否有任何解决方法? 最佳答案 遗憾的是这是设计使然。您需要创建自定义工作流事件来创建/更新业务部门
你们这里有些奇怪。 我们有一个相当复杂的解决方案(在asp.net,silverlight,WFC,Ria Services等中分布了111个项目)解决方案,该解决方案可以在我的开发盒中正确构建(20
我们的技术总监希望测试运行后,能够在 Microsoft 团队 channel 中更新当前 testng 报告中的测试结果。 我们目前正在使用 testng 报告来分析测试运行后的报告。 我们可以将
我是一名优秀的程序员,十分优秀!