Explosion
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 259 Accepted Submission(s): 67
Problem Description
Everyone knows Matt enjoys playing games very much. Now, he is playing such a game. There are N rooms, each with one door. There are some keys(could be none) in each room corresponding to some doors among these N doors. Every key can open only one door. Matt has some bombs, each of which can destroy a door. He will uniformly choose a door that can not be opened with the keys in his hand to destroy when there are no doors that can be opened with keys in his hand. Now, he wants to ask you, what is the expected number of bombs he will use to open or destroy all the doors. Rooms are numbered from 1 to N.
Input
The first line of the input contains an integer T, denoting the number of testcases. Then T test cases follow.
In the first line of each test case, there is an integer N (N<=1000) indicating the number of rooms.
The following N lines corresponde to the rooms from 1 to N. Each line begins with an integer k (0<=k<=N) indicating the number of keys behind the door. Then k integers follow corresponding to the rooms these keys can open.
In the first line of each test case, there is an integer N (N<=1000) indicating the number of rooms.
The following N lines corresponde to the rooms from 1 to N. Each line begins with an integer k (0<=k<=N) indicating the number of keys behind the door. Then k integers follow corresponding to the rooms these keys can open.
Output
For each test case, output one line "Case #x: y", where x is the case number (starting from 1), y is the answer which should be rounded to 5 decimal places.
Sample Input
2
3
1 2
1 3
1 1
3
0
0
0
Sample Output
Case #1: 1.00000
Case #2: 3.00000
题意:
给出 T 组 case,后给出 N 个房间,后有 N 行,第 i 行代表打开 i 号门后拥有的钥匙有什么,首先给出 K 代表有 K 条钥匙,后给出 K 条钥匙是什么。如果没有钥匙能打开这扇门则可以用 boom 炸开它,求能打开所有门所有 boom 数的数学期望。
思路:
统计 S 表示该扇门能被打开的房间总数有多少个,则 1 / S 则表示这扇门能被打开的概率,则 Sum { 1 / Si (1 <= i <= n ) } 即为所求。则题目转化为求传递闭包问题,用 bitset 优化可节省时间。
AC:
#include <cstdio> #include <cstring> #include <algorithm> #include <bitset> using namespace std; const int VMAX = 1005; bitset<VMAX> Map[VMAX]; double res; int n; void floyd () { for (int i = 1; i <= n; ++i) { for (int j = 1; j <= n; ++j) { if (Map[j][i]) Map[j] |= Map[i]; } } for (int i = 1; i <= n; ++i) { int ans = 0; for (int j = 1; j <= n; ++j) { if (Map[j][i]) ++ans; } res += 1.0 / (double) ans; } } int main() { int t; scanf("%d", &t); for (int tt = 1; tt <= t; ++tt) { scanf("%d", &n); res = 0; for (int i = 1; i <= n; ++i) { Map[i].reset(); Map[i][i] = 1; } for (int i = 1; i <= n; ++i) { int ans; scanf("%d", &ans); while (ans--) { int j; scanf("%d", &j); Map[i][j] = 1; } } floyd(); printf("Case #%d: %.5lf\n", tt, res); } return 0; }
相关推荐
"Stylized Explosion Pack 1"将这些设置优化并打包,用户只需将对应的unitypackage导入项目,即可直接应用到游戏中,大大节省了开发时间和精力。 在使用过程中,开发者可以通过Unity编辑器的Inspector窗口对预设的...
"Mesh Explosion"就是这样一个专为Unity3D设计的游戏插件,用于实现逼真的物体破碎效果。该插件的核心功能是将游戏场景中的三维模型(Mesh)在特定条件下“炸裂”成多个碎片,从而模拟物体爆炸或破裂的动态过程。 1...
在优化方面,Mesh Explosion14应该考虑到了性能问题。在大规模破碎效果下,高效的处理方式至关重要,以免影响游戏的流畅性。这款插件很可能采用了优化的计算方法,如分批次处理碎片、延迟生成等技术,以减少对CPU和...
explosion.unitypackage爆炸的unity的资源,增加学习的。。。。。
unity3d 游戏插件 Mesh Explosion 物体破碎特效资源包
Make it pop with iMG's Explosion FX package! Ten high quality animation texture sheets with alpha channel. Make your project stand out from the masses with stunning fire, smoke and explosion ...
2. **加载指标**:在MT4平台上,打开所需图表,然后选择“插入”菜单,找到“指标”子菜单,接着在自定义指标列表中选择“Waddah Attar Explosion”并点击确定。 3. **设置参数**:根据个人交易策略,可以调整指标的...
在使用这些粒子效果时,开发者需要检查并适配当前Unity3D版本,以确保兼容性和优化性能。有时,这可能涉及到更新粒子脚本、转换粒子设置,甚至重写部分代码。 Unity3D的粒子系统支持脚本化控制,这意味着开发者可以...
unity3d 火焰爆炸特效 Realistic Fire Explosion Pack 1.2 最新 Requires Unity 5.0.2 or higher.
Toon Explosion Volume 1是一款精美多变的精灵表动画包!(核爆炸,火灾爆炸,分解爆炸,烟雾......) 你可以在各种各样的项目中使用它们(粒子发射器,2D游戏,其他......)。 图片以PNG格式(2048x2048 32 => 64帧...
Mega cool nuclear blast! Also blast have shock wave!. YOU NEED IMPORT POST PROCESS STACK FOR ENABLE PROFILE POWERFUL DX11 SHADER FOR PC & CONSOLE SHOCK WAVE ( IN SONIC SPEED) ...COMPLETE SETTING ...
7. **优化性能**:在大型场景中,大量的碎片可能会对性能造成影响。可以通过LOD(Level of Detail)系统降低远处碎片的细节,或者使用Collider的IsTrigger属性仅在碰撞检测时启用,以节省计算资源。 8. **调试与...
7. **优化与性能调优**:为了保证在不同设备上的性能表现,可能需要对代码进行优化,比如减少内存占用,提高计算效率,以及确保兼容各种屏幕尺寸和分辨率。 8. **文档学习与理解**:理解和熟悉"Explosion Field"的...
在这个“explosion_in_water.rar”压缩包中,包含了一个关于水下爆炸的LS-DYNA模拟案例,名为"explosion_in_water.k",这是一个K文件,也就是LS-DYNA的输入文件。 水下爆炸是工程领域中的一个重要研究课题,涉及到...
xpaider pixel explosion 02
6. **优化与性能**:考虑到游戏性能,资源包可能会提供优化策略,如LOD(Level of Detail)层次细节系统,根据距离自动降低爆炸特效的复杂度,或者预烘焙光照,减少运行时的计算负担。 总的来说,"Realistic ...
标题中的"wp-explosion_wplinktool_zip_"可能是指一个WordPress插件的更新或安装包,其中"wp-explosion"可能是插件的开发者或者品牌名,"wplinktool"是插件的主要功能,它是一个链接管理工具,而"_zip_"则表明这个...
Ians Explosion Pack特效包
《PyPI官网下载 | explosion-0.0.1.tar.gz:深入理解Python库的发布与安装》 在Python的世界里,PyPI(Python Package Index)是最重要的资源库,它为全球的开发者提供了一个集中地来发布、分享和发现Python软件包...