Skip to main content

Questions tagged [randomized-algorithms]

Questions about algorithms whose behaviour is determined not only by its input but also by a source of random numbers.

3 votes
1 answer
102 views

I'm interested in the following problem: given a (multi-)graph with each edge coloured by one of 3 colours, find a perfect matching with exactly k_i edges of colour i in {1,2,3}. I'm also interested ...
J. Schmidt's user avatar
3 votes
1 answer
118 views

Let $f : S \times \mathbb{N} → \mathbb{Z}$ be a stochastic function seeded by $\mathrm{seed} \in S$, constrained such that $$ |f(\mathrm{seed}, t + 1) - f(\mathrm{seed}, t)| \le 1 $$ Such a function ...
William Ryman's user avatar
0 votes
0 answers
65 views

I'm exploring data structures suitable for persistent applications. A key use case I have is splitting a subsegment from a tree, copying it, and then merging these copies into other data structures. ​...
吴松原's user avatar
1 vote
0 answers
29 views

In the paper "Optimal Speedup of Las Vegas Algorithms" Luby, M., Sinclair, A. and Zuckerman, D. give an asymptotically optimal sequences for how many time to run an Las Vegas algorithm ...
worldsmithhelper's user avatar
1 vote
1 answer
86 views

If you have a tree, there are two common ways to select a random leaf node from the tree: You can "flatten" out the tree, so that each leaf node gets selected with the same probability. ...
WingedKnight's user avatar
2 votes
0 answers
91 views

Consider an Erdos-Renyi random graph $G(n, p)$. Suppose there exists a coloring algorithm $\mathcal{A}$ that, for any graph instance $g \sim G(n, p)$, generates a valid coloring $C^{\mathcal{A}}_g$ of ...
Subhankar Ghosal's user avatar
1 vote
1 answer
103 views

Consider the following randomised distributed algorithm for computing (constant-approximation) maximum matching. The algorithm has $\log ∆$ iterations indexed by $i∈{0,1,2,\ldots,\log ∆− 1}$. We ...
cartman's user avatar
  • 21
0 votes
0 answers
80 views

Under the derandomization assumption $\mathsf{MA=NP}$, one can obtain the hardness of approximation result for the class $\mathsf{MA}$. (Note: By invoking the PCP theorem.) Has there been another way/...
Manish Kumar's user avatar
0 votes
1 answer
74 views

Consider an algorithm that generates random numbers in the range [1, 50000] with the following distribution: The specific value 12345 should have a 40% probability of being selected The remaining 60% ...
VEDANG AGRAWAL's user avatar
2 votes
0 answers
79 views

Let $𝐿 ∈ RTIME(𝑛 ^3 )$. That is: There exists a Probabilistic TM that runs in $𝑂(𝑛^3 )$ time, such that for every $𝑥 ∈ \{0,1\}^∗$ $x ∈ L ⟹ Pr[𝑀(𝑥) = 1] ≥ 2/3$ $x ∉ L ⟹ Pr[𝑀(𝑥) = 0] = 1$ I ...
David's user avatar
  • 121
0 votes
0 answers
154 views

I'm trying to prove that BPP is closed under concatenation, meaning that if $A,B \in BPP$, then $AB = \{ab|a\in A,b\in B\} \in BPP$. EDIT: I think I've made it: BPP is Closed Under Concatenation Let $...
Not Even Wrong's user avatar
1 vote
0 answers
128 views

Lemma1. There exists a polynomial time computable transformation $f$ from the 3CNF formulas to graphs such that for every 3CNF formula $\varphi$, $f(\varphi)$ is an $n$-vertex graph whose $|MIS| = \...
Monte_carlo's user avatar
1 vote
0 answers
59 views

Let $L \subseteq \{0, 1\}^∗$ be a language and $M_L$ be a probabilistic polynomial-time Turing machine(PPTM), such that, for every $x \in\{0, 1\}^n$ the machine $M$ uses at most $n^{1/4}$ random coins ...
Monte_carlo's user avatar
0 votes
0 answers
118 views

I try to understand the difference between complexity classes PP and BPP for randomized algorithms. I follow this question which is quite old, so I prefer to open another thread. Surprisingly, I could ...
deb2014's user avatar
  • 151
1 vote
1 answer
159 views

The proof for $BPP\subseteq EXP$, goes like this: Let $L\in BPP$, meaning $L$ has a randomized TM $M$ that runs in some $k = poly(n)$. Thus, $M$ can read at most $k$ bits from a random string $r\in\...
Daniel's user avatar
  • 341

15 30 50 per page
1
2 3 4 5
31