Sent to me by a friend, I'm stumped.
We have an urn. It is first filled with balls of $C$ different colors, ${N_1,N_2,...N_c}$ of each of the colors. Lastly, a ball with a distinct marking is added.
We are not given $C$ or any of the $N$ values.
A machine removes the balls without replacement until the single ball with the distinct marking is picked.
We are given a vector of probabilities ${p_1, p_2,..., p_m}$ that one or more of the complete sets of the colored balls has been picked and the ball with the distinct mark has not been picked for picks $1, 2, ...,m$ where the $m_{th}$ pick has probability 0 (all balls including the marked ball have been picked).
The task is to find the probability that a success occurs (some complete set of one of the colors is drawn before the marked ball is drawn) at some (any) point during the picking process, given only the probability vector of the individual pick steps.
We obviously know from the vector the smallest of the $N$ and the total number of colored balls (the first and last non-zero elements in the vector), but that seems of little utility.
I don't think there's enough information in just the probability vector to answer the question.
Am I wrong?
Edit: A simple example.
Say the urn has 1 red, 2 blue, 3 green balls, plus the ball with the marking.
The probability that we've seen the red, or seen the 2 blues, or seen the 3 greens, or any combination of these sets, without having seen the marked ball is a hypergeometic distribution, with probabilities $\left\{\frac{1}{7},\frac{2}{7},\frac{2}{5},\frac{3}{7},\frac{2}{7},\frac{1}{7},0\right\}$ for the 1st, 2nd,..., 7th draw.
Using inclusion-exclusion it can be seen that the probability over a sequence of 7 draws without replacement that we've seen at least one of the sets of 1/2/3 balls before the marked ball was drawn is $\frac{64}{105}$.
So, given only the probability vector here of $\left\{\frac{1}{7},\frac{2}{7},\frac{2}{5},\frac{3}{7},\frac{2}{7},\frac{1}{7},0\right\}$, with no other information about how many colors nor how many of each, etc., can the latter probability of $\frac{64}{105}$ for some success over the course of emptying the urn be derived?

Let $q_i$ be the probability of success and that the marked ball is picked at step $i+1$. Is it not true that $q_i=p_i/(M-i)$ where $M$ is the total number of balls? I might be misunderstanding the problem but it seems to me then that the desired probability is the sum $\sum_i q_i$.
I just want to point out that it seems I did understand the problem correctly and the formula I provided works. I will use your example:
64/105=(1/7)/6+(2/7)/5+(2/5)/4+(3/7)/3+(2/7)/2+(1/7)/1
So the problem is very much solvable.