>>795
シミュレーションしてみた。
1万回からPの方が先に見つける頻度を出すのを1万回繰り返したときの確率は

> summary(re)
Min. 1st Qu. Median Mean 3rd Qu. Max.
0.3749 0.3906 0.3939 0.3939 0.3972 0.4132

となって0.5より小さいのでQの方が有利という結果になった


Rでのスクリプトはこれ

x=c(1,1,rep(0,10))
is.P1st <- function(){
Q=sample(x)
z=matrix(Q,ncol=4,byrow=T)
P=as.vector(z)
which.max(P) < which.max(Q)
}
re=replicate(1e4,mean(replicate(1e4,is.P1st())))
summary(re)