REVIEW 27 references
Randomized Algorithms for Learning Partitions with Near Optimal Query Complexity in Constant Rounds
T0 review · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read This paper proves that randomized algorithms can learn a hidden partition of n items in just 3 rounds when the number of parts is known, using O(nk log n) yes/no membership queries, and that 2 rounds still require Ω(n^{4/3} k^{2/3}) queries
desk verdict Known-k results and deterministic separation are real, but the unknown-k randomized upper bound has a genuine missing sqrt(log n) factor; Algorithm 2 as written can leave n^{1-o(1)} points unclassified. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central machinery is random sampling as a net: a random subset of O(√(nk) log n) elements hits every part of size at least √(n/k), so one round of all-pairs queries inside that sample exposes the part labels of large clusters. For unknown k, the first round runs the same idea at every scale s=2^i: sample O(s log n) elements, test each against O(n/s) random partners, and count elements receiving exactly one positive answer; the smallest useful scale yields a valid lower bound on |P|. The lower-bound machinery is a planted-pair construction: a 'red' layer R is formed by tagging each item independently with probability l^{−1/3} within k random groups, and one pair (a,b) is drawn uniformly f
What would settle it
Run the two-round lower-bound distribution with n=10^6 and k=n^{1/2}, have a candidate 2-round algorithm issue o(n^{4/3} k^{2/3}) queries, and measure how often it queries the planted pair (a,b); if the hit probability stays bounded away from 0 over many trials, the claimed indistinguishability would be broken. For the upper bound, implement the 3-round algorithm with k=n^{1/2} and record the actual number of queries in the third round; the paper's lemma says the leftover set has size O(√(nk) log n), so if the observed third-round query count grows faster than O(nk log n) ≈ n^{3/2} log n, the
Extended reading notes
Core claim
Randomization removes the log-log-round barrier for learning a hidden partition with near-optimal query cost. A 3-round algorithm samples O(√(nk) log n) items, queries all pairs among them, queries each representative against all items, then queries all pairs among the few leftovers; the sample hits every part of size ≥√(n/k), so the leftovers are few. With unknown k, a first round testing scales s by counting items with exactly one positive answer among O(n/s) random partners yields a valid lower bound on |P|, and three more rounds finish with O(n|P| log^2 n) queries. Lower bounds use a random pair (a,b) that differs between two worlds; if no query hits (a,b) the worlds look identical, and
Load-bearing premise
The lower-bound arguments hinge on the premise that after the first round of queries almost no query lands with both endpoints inside the same hidden subgroup U_i, so the answers reveal essentially nothing about the planted pair (a,b); if an algorithm could concentrate many first-round queries inside individual U_i without knowing the labels, the indistinguishability argument would fail.
Editorial extensions
If this is right
- Known-k partition learning becomes a constant-round problem: three rounds attain O(nk log n) queries whp, so batch-latency cost no longer forces a log-log-n sequential wait.
- Randomization gives no advantage at two rounds: the Ω(n^{4/3} k^{2/3}) lower bound matches the deterministic complexity, so the gap opens only at round three.
- Unknown-k learning is also constant-round for randomized algorithms, at the price of one extra round and a log factor: O(n|P| log^2 n) queries in four rounds.
- For deterministic algorithms, knowing |P| is exponentially important: without it, near-optimal query cost requires Θ(log n/log log n) rounds rather than Θ(log log n).
- The same constant-round randomized algorithms carry over to bounded-size subset queries, using eO(nk/s^2) queries instead of O(nk), shrinking query cost when subset queries are available.
Reading between the lines
- Inference: the lower-bound technique suggests a general recipe—when a 2-round algorithm's first round must be spent without knowing the part labels, hard distributions can hide a critical pair inside a sparse layer; this recipe may transfer to other pairwise-query learning problems, such as learning a hidden matching or a graph.
- Inference: because the unknown-k algorithm's estimate k* can be far below the true |P|, the paper's approach points toward a two-phase template—estimate a loose scale in round one, then run a known-k routine on the derived bound; this template could be adapted to estimate other distributional parameters before a refine step.
- Inference: a testable practical question is how the 3-round and 4-round algorithms behave under noisy or faulty same-cluster answers; the 'exactly one positive answer' test used to estimate k seems likely to be fragile under even a small error rate, and designing a noise-robust constant-round variant is a natural next step.
- Inference: the paper leaves a concrete open gap—a 3-round unknown-k algorithm needing Ω(n^{4/3}|P|^{2/3}) queries in some round; closing this gap either positively (matching algorithm) or negatively (stronger lower bound) would pin down the exact round-dependent query tradeoff in the unknown-k regime.
Editorial analysis
A structured set of objections, weighed in public.
Circularity Check
No significant circularity found; algorithms are constructive against an external baseline and lower bounds are standard Yao/adversary arguments.
full rationale
The paper's central claims do not reduce to their inputs. The known-k 3-round algorithm (Theorem 2.1) is built from random sampling and pairwise queries, with query bound proved directly in Lemmas 2.4–2.5; the unknown-k algorithm (Theorem 2.6) computes a lower bound k* by random sampling and then invokes Algorithm 1, with the final-round bound derived from Lemmas 2.7–2.8 and Corollary 2.9 rather than assumed. The lower bounds use fixed hard distributions and Yao's lemma; the 'special pair' argument conditions on the first-round answer being independent of (a,b), and the indistinguishability between SINGLETON and DOUBLETON is established from the distribution, not from the statement being proved. BMS [9] is external prior work; the authors' own earlier papers ([12], [13]) appear only in related-work remarks and are not load-bearing. The reader's/skeptic's concern about an off-by-sqrt(log n) factor in Theorem 2.10 is an arithmetic correctness question, not circularity: even if the proof has a gap, the bound is not obtained by assuming the theorem's conclusion. No fitted parameter is relabeled as a prediction, and no self-citation is used to forbid alternatives.
Assumptions & free parameters
assumptions (5)
- domain assumption PAIR oracle answers are exactly consistent with a fixed hidden partition and are noiseless.
- domain assumption The hidden partition is fixed before queries, and the oracle knows the algorithm code but not the random seed.
- standard math Standard concentration and minimax tools: Chernoff, Markov, union bound, Yao's lemma.
- domain assumption Lemma 5.2 from BMS [9] provides a non-adaptive subset-query learner with the stated query bound.
- standard math Every m-edge graph has chromatic number O(sqrt(m)) (Fact 1 of [4]).
Cite this review
Pith. "Pith review of Randomized Algorithms for Learning Partitions with Near Optimal Query Complexity in Constant Rounds." pith.science (2026). https://pith.science/paper/NAPBNICD
@misc{pith2026260802176,
author = {Pith},
title = {Pith review of: Randomized Algorithms for Learning Partitions with Near Optimal Query Complexity in Constant Rounds},
year = {2026},
howpublished = {\url{https://pith.science/paper/NAPBNICD}},
note = {Machine review of arXiv:2608.02176}
}
abstract
We study the round complexity of learning a hidden partition $\mathcal{P}$ of an $n$-element universe using PAIR queries: PAIR($x,y$) tells us whether $x$ and $y$ belong to the same part of the partition or not. While it is easy to learn using $n|\mathcal{P}|$ queries using a basic algorithm and this query complexity is optimal, this basic algorithm is highly sequential. Black, Mazumdar, and Saha [COLT 2025] recently gave tight deterministic round/query tradeoffs when the number of parts of $\mathcal{P}$ is known. In particular they prove $\Theta(\log\log n)$ rounds are sufficient and necessary to limit the number of queries to $n|\mathcal{P}|$. They leave proving a randomized lower bound as an open direction. We show that randomization dramatically changes the picture. When the number of parts $k = |\mathcal{P}|$ is known, we give a simple 3-round randomized algorithm using $O(nk\log n)$ queries with high probability, and prove that 2 rounds require $\Omega(n^{4/3}k^{2/3})$ queries -- the same as deterministic algorithms. We also study a more general setting where the number of parts is unknown. In this case, we give a 4-round randomized algorithm using $O(n|\mathcal P|\log^2 n)$ queries with high probability, and prove that 3-rounds cannot achieve near-optimal query complexity. Furthermore, we show an even bigger separation in this regime between randomized and deterministic algorithms: for the latter, $\Theta(\log n/\log\log n)$ rounds are necessary and sufficient to obtain near-optimal query complexity.
Reference graph
Works this paper leans on
-
[1]
Hasan Abasi and Nader H. Bshouty. On learning graphs with edge-detecting queries. In Proceedings, International Conference on Algorithmic Learning Theory (ALT), pages 3–30, 2019
2019
-
[2]
Learning a hidden matching.SIAM Journal on Computing (SICOMP), 33(2):487–501, 2004
Noga Alon, Richard Beigel, Simon Kasif, Steven Rudich, and Benny Sudakov. Learning a hidden matching.SIAM Journal on Computing (SICOMP), 33(2):487–501, 2004
2004
-
[3]
Learning a hidden hypergraph.Journal of Machine Learning Research (JMLR), 7(79):2215–2236, 2006
Dana Angluin and Jiang Chen. Learning a hidden hypergraph.Journal of Machine Learning Research (JMLR), 7(79):2215–2236, 2006
2006
-
[4]
Learning a hidden graph usingo(logn) queries per edge
Dana Angluin and Jiang Chen. Learning a hidden graph usingo(logn) queries per edge. Journal on Computer and System Sciences (JCSS), 74(4):546–556, 2008
2008
-
[5]
Clustering with same-cluster queries
Hassan Ashtiani, Shrinu Kushagra, and Shai Ben-David. Clustering with same-cluster queries. InAdvances in Neural Information Processing Systems (NeurIPS), pages 3216–3224, 2016
2016
-
[6]
Non-adaptive learning of random hypergraphs with queries
Bethany Austhof, Lev Reyzin, and Erasmo Tani. Non-adaptive learning of random hypergraphs with queries. InIEEE International Symposium on Information Theory (ISIT), pages 1209–
-
[7]
Learning low degree hypergraphs
Eric Balkanski, Oussama Hanguir, and Shatian Wang. Learning low degree hypergraphs. In Proceedings, Conference on Learning Theory (COLT), pages 419–420, 2022
2022
-
[8]
Clustering with non-adaptive subset queries
Hadley Black, Euiwoong Lee, Arya Mazumdar, and Barna Saha. Clustering with non-adaptive subset queries. InAdvances in Neural Information Processing Systems (NeurIPS), pages 1–33, 2024
2024
Show all 27 references
-
[9]
Learning partitions with optimal query and round complexities
Hadley Black, Arya Mazumdar, and Barna Saha. Learning partitions with optimal query and round complexities. InProceedings, Conference on Learning Theory (COLT), pages 344–374, 2025
2025
-
[10]
Exact recovery of mangled clusters with same-cluster queries
Marco Bressan, Nicol` o Cesa-Bianchi, Silvio Lattanzi, and Andrea Paudice. Exact recovery of mangled clusters with same-cluster queries. InAdvances in Neural Information Processing Systems (NeurIPS), pages 9324–9334, 2020
2020
-
[11]
Bshouty and Hanna Mazzawi
Nader H. Bshouty and Hanna Mazzawi. Optimal query complexity for reconstructing hyper- graphs. InProceedings, Internation Symposium on Theoretical Aspects of Computer Science (STACS), pages 143–154, 2010
2010
-
[12]
Learning partitions using rank queries
Deeparnab Chakrabarty and Hang Liao. Learning partitions using rank queries. InPro- 23 ceedings, Foundations of Software Technology and Theoretical Computer Science. (FSTTCS), pages 16:1–16:14, 2024
2024
-
[13]
Query complexity of hypergraph connectivity and learnability using CUT oracles
Deeparnab Chakrabarty and Hang Liao. Query complexity of hypergraph connectivity and learnability using CUT oracles. InProceedings, European Symposium on Algorithms, page to appear, 2026. To appear. Also available as arXiv:2607.01216
2026 arXiv
-
[14]
Davidson, Sanjeev Khanna, Tova Milo, and Sudeepa Roy
Susan B. Davidson, Sanjeev Khanna, Tova Milo, and Sudeepa Roy. Top-kand clustering with noisy comparisons.ACM Transactions on Database Systems, 39(4):35:1–35:39, 2014
2014
-
[15]
Clustering with queries under semi- random noise
Alberto Del Pia, Mingchen Ma, and Christos Tzamos. Clustering with queries under semi- random noise. InProceedings, Conference on Learning Theory (COLT), pages 1391–1459, 2022
2022
-
[16]
Optimal algo- rithms for learning partitions with faulty oracles
Adela Frances DePavia, Olga Medrano Mart ´ ın del Campo, and Erasmo Tani. Optimal algo- rithms for learning partitions with faulty oracles. InAdvances in Neural Information Processing Systems (NeurIPS), pages 20225–20258, 2024
2024
-
[17]
Optimal reconstruction of graphs under the addi- tive model.Algorithmica, 28(1):104–124, 2000
Vladimir Grebinski and Gregory Kucherov. Optimal reconstruction of graphs under the addi- tive model.Algorithmica, 28(1):104–124, 2000
2000
-
[18]
Same-cluster query- ing for overlapping clusters
Wasim Huleihel, Arya Mazumdar, Muriel M´ edard, and Soumyabrata Pal. Same-cluster query- ing for overlapping clusters. InAdvances in Neural Information Processing Systems (NeurIPS), pages 10485–10495, 2019
2019
-
[19]
Tight query complexity bounds for learning graph partitions
Xizhi Liu and Sayan Mukherjee. Tight query complexity bounds for learning graph partitions. InProceedings, Conference on Learning Theory (COLT), pages 167–181, 2022
2022
-
[20]
Clustering with noisy queries
Arya Mazumdar and Barna Saha. Clustering with noisy queries. InAdvances in Neural Information Processing Systems (NeurIPS), pages 5788–5799, 2017
2017
-
[21]
Query complexity of clustering with side information
Arya Mazumdar and Barna Saha. Query complexity of clustering with side information. In Advances in Neural Information Processing Systems (NeurIPS), pages 4682–4693, 2017
2017
-
[22]
A theoretical analysis of first heuristics of crowdsourced entity resolution
Arya Mazumdar and Barna Saha. A theoretical analysis of first heuristics of crowdsourced entity resolution. InProceedings, AAAI Conference on Artificial Intelligence (AAAI), pages 970–976, 2017
2017
-
[23]
Optimally reconstructing weighted graphs using queries
Hanna Mazzawi. Optimally reconstructing weighted graphs using queries. InProceedings, ACM-SIAM Symposium on Discrete Algorithms (SODA), pages 608–615, 2010
2010
-
[24]
Tsourakakis
Michael Mitzenmacher and Charalampos E. Tsourakakis. Predicting signed edges with o(n1+o(1) logn) queries. arXiv preprint arXiv:1609.00750, 2016
2016 arXiv
-
[25]
Learning and verifying graphs using queries with a focus on edge counting
Lev Reyzin and Nikhil Srivastava. Learning and verifying graphs using queries with a focus on edge counting. InProceedings, International Conference on Algorithmic Learning Theory (ALT), pages 285–297, 2007
2007
-
[26]
Franklin, and Jianhua Feng
Jiannan Wang, Guoliang Li, Tim Kraska, Michael J. Franklin, and Jianhua Feng. Leverag- ing transitive relations for crowdsourced joins. InProceedings of the 2013 ACM SIGMOD International Conference on Management of Data, pages 229–240. ACM, 2013
2013
-
[27]
Question selection for crowd entity resolution.Proceedings, Very Large Databases (VLDB), 6(6):349–360, 2013
Steven Euijong Whang, Peter Lofgren, and Hector Garcia-Molina. Question selection for crowd entity resolution.Proceedings, Very Large Databases (VLDB), 6(6):349–360, 2013. 24 A On Estimating the number of parts As mentioned in the main body, one natural approach to solve the p...
2013
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.