一个迷宫有n扇门,走第i扇门时间为 ,若 为正,则走出迷宫,若 为负,则回到原来位置并忘记已走过的门。问走出迷宫的时间期望,若不能走出迷宫输出inf,否则以分数形式输出 。
【数据范围】
组数据,
。
【分析】
首先对于题目给定的如下样例应该如何推得答案为
,
3
3 -6 -9
设定期望为d,即
;
所以推得
,故得最后
;
同样的当有n个数时,我们假定有a个为正数,b个负数,
就有
,从而
,
最后
,当然,当
时那就输出
。
【代码】
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<algorithm>
using namespace std;
int res, T, n;
int tot;
int main() {
scanf("%d", &T);
while(T--) {
printf("Case %d: ", ++tot);
scanf("%d", &n);
int x = 0;
res = 0;
for(int i = 1; i <= n; i++) {
int a;
scanf("%d", &a);
if(a > 0)x++;
res += abs(a);
}
if(x == 0)printf("inf\n");
else {
int tmp = __gcd(res, x);
printf("%d/%d\n", res / tmp, x / tmp);
}
}
return 0;
}