pith. sign in

arxiv: 2501.13596 · v3 · submitted 2025-01-23 · 💻 cs.DS

New Oracles and Labeling Schemes for Vertex Cut Queries

Pith reviewed 2026-05-23 05:31 UTC · model grok-4.3

classification 💻 cs.DS
keywords vertex cut querieslabeling schemesgraph oraclesdata structuresvertex separatorsconnectivity queriessuccinct representations
0
0 comments X

The pith

Every n-vertex graph admits an f-vertex cut labeling scheme with labels of length Õ(n^{1-1/f}) bits.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper develops succinct representations for determining whether a small set of vertices forms a cut in an undirected graph. It gives labeling schemes that assign a short label to each vertex so any cut query on a set F of size at most f can be answered by reading only the labels of the vertices in F. The achieved label length is Õ(n^{1-1/f}) when f is polylogarithmic in n and nearly matches a recent lower bound. In the centralized oracle model the work also supplies near-linear space data structures with query time exponential in f for logarithmic f, together with conditional optimality results.

Core claim

Every n-vertex graph admits an f-vertex cut labeling scheme where the labels have length of Õ(n^{1-1/f}) bits (when f is polylogarithmic in n). For centralized oracles, every n-vertex graph admits an f-vertex cut oracle with Õ(n) space and Õ(2^f) query time when f=O(log n). These oracles are optimal up to n^{o(1)} factors conditioned on plausible fine-grained complexity conjectures. If the graph is f-connected, minimum vertex cut queries can be answered in Õ(f^2) time for any 1 ≤ f ≤ n.

What carries the argument

The f-vertex cut labeling scheme that encodes sufficient cut information into per-vertex labels of size Õ(n^{1-1/f}) so that membership of a set F in the cut family is decided from the labels of vertices in F alone.

If this is right

  • A cut query on any set F of size at most f can be resolved by inspecting only the labels of the vertices inside F.
  • Near-linear space suffices for an f-vertex cut oracle when f is at most logarithmic in n.
  • The oracle space and query time are optimal up to n^{o(1)} factors under the stated fine-grained conjectures.
  • When the input graph is f-connected, minimum-size vertex cut queries admit Õ(f^2) query time for every f up to n.
  • The labeling length nearly matches the lower bound established in prior work.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same labeling technique might be adaptable to edge-cut queries if the underlying encoding can be transferred from vertices to edges.
  • In a distributed network the short labels could support local verification of global cuts without flooding the entire topology.
  • Dynamic maintenance of these labels under edge insertions or deletions is left open and would be a natural next question.
  • The sublinear label size suggests that global connectivity information can be compressed and distributed with storage cost far below the size of an adjacency list.

Load-bearing premise

The optimality claims for the oracles depend on certain fine-grained complexity conjectures remaining true.

What would settle it

An explicit family of n-vertex graphs in which every f-vertex cut labeling scheme requires labels of length n^{1-1/f + ε} bits for some ε>0 and polylogarithmic f, or an f-vertex cut oracle using o(n) space and o(2^f) query time when f=O(log n).

read the original abstract

We study the succinct representations of vertex cuts by centralized oracles and labeling schemes. For an undirected $n$-vertex graph $G = (V,E)$ and integer parameter $f \geq 1$, the goal is supporting vertex cut queries: Given $F \subseteq V$ with $|F| \leq f$, determine if $F$ is a vertex cut in $G$. In the centralized data structure setting, it is required to preprocess $G$ into an $f$-vertex cut oracle that can answer such queries quickly, while occupying only small space. In the labeling setting, one should assign a short label to each vertex in $G$, so that a cut query $F$ can be answered by merely inspecting the labels assigned to the vertices in $F$. While the ``$st$ cut variants'' of the above problems have been extensively studied and are known to admit very efficient solutions, the basic (global) ``cut query'' setting is essentially open (particularly for $f > 3$). This work achieves the first significant progress on these problems: [$f$-Vertex Cut Labels:] Every $n$-vertex graph admits an $f$-vertex cut labeling scheme, where the labels have length of $\tilde{O}(n^{1-1/f})$ bits (when $f$ is polylogarithmic in $n$). This nearly matches the recent lower bound given by Long, Pettie and Saranurak (SODA 2025). [$f$-Vertex Cut Oracles:] For $f=O(\log n)$, every $n$-vertex graph $G$ admits $f$-vertex cut oracle with $\tilde{O}(n)$ space and $\tilde{O}(2^f)$ query time. We also show that our $f$-vertex cut oracles for every $1 \leq f \leq n$ are optimal up to $n^{o(1)}$ factors (conditioned on plausible fine-grained complexity conjectures). If $G$ is $f$-connected, i.e., when one is interested in \emph{minimum} vertex cut queries, the query time improves to $\tilde{O}(f^2)$, for any $1 \leq f \leq n$.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

0 major / 3 minor

Summary. The paper studies succinct representations for f-vertex cut queries in undirected n-vertex graphs. It gives an explicit f-vertex-cut labeling scheme with label length Õ(n^{1-1/f}) bits when f is polylogarithmic in n, nearly matching the SODA 2025 lower bound of Long, Pettie and Saranurak. It also constructs f-vertex-cut oracles with Õ(n) space and Õ(2^f) query time for f = O(log n), shows conditional optimality (up to n^{o(1)}) of the oracles for all 1 ≤ f ≤ n under fine-grained conjectures, and improves the query time to Õ(f^2) for minimum vertex-cut queries when the graph is f-connected.

Significance. If the constructions are correct, the work supplies the first non-trivial upper bounds for global (non-st) vertex-cut oracles and labeling schemes when f > 3. The near-matching of the recent lower bound for labeling schemes and the explicit, parameter-free nature of the constructions are strengths. The conditional optimality statements for the oracles are also useful for understanding the fine-grained complexity landscape.

minor comments (3)
  1. [§1] §1 (Introduction): the comparison table with prior work for small constant f is missing; adding one would clarify the improvement over the f=2,3 cases that were already known.
  2. [Abstract] Abstract and §3: the specific fine-grained conjectures (e.g., SETH, 3SUM, or APSP) underlying the optimality claims are only described as 'plausible'; naming them explicitly would strengthen the statement.
  3. [Notation] Notation section: the definition of 'f-connected' is used both for the min-cut variant and for the general oracle; a short clarifying sentence would avoid potential reader confusion.

Simulated Author's Rebuttal

0 responses · 0 unresolved

We thank the referee for the positive review, the accurate summary of our contributions, and the recommendation for minor revision. No specific major comments were provided in the report.

Circularity Check

0 steps flagged

No significant circularity

full rationale

The paper presents explicit algorithmic constructions for f-vertex cut labeling schemes achieving Õ(n^{1-1/f}) label length and oracles with Õ(n) space, directly stated as new results that nearly match an external lower bound from Long, Pettie and Saranurak (SODA 2025, different authors). Optimality claims are conditioned on external fine-grained complexity conjectures rather than internal fits or self-citations. No self-definitional steps, fitted inputs renamed as predictions, or load-bearing self-citations appear in the provided abstract or claim descriptions; the derivation chain consists of constructive reductions to known external results.

Axiom & Free-Parameter Ledger

0 free parameters · 2 axioms · 0 invented entities

The work rests on standard graph-theoretic assumptions and fine-grained complexity conjectures already present in the literature; no new free parameters, ad-hoc axioms, or invented entities are introduced.

axioms (2)
  • standard math Undirected graphs are simple and the standard model of vertex connectivity applies.
    Implicit throughout the abstract when defining vertex cuts.
  • domain assumption Fine-grained complexity conjectures (e.g., SETH or APSP hardness) hold for the optimality claims.
    Explicitly invoked for the statement that the oracles are optimal up to n^{o(1)} factors.

pith-pipeline@v0.9.0 · 5947 in / 1338 out tokens · 41602 ms · 2026-05-23T05:31:57.687186+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Lean theorems connected to this paper

Citations machine-checked in the Pith Canon. Every link opens the source theorem in the public Lean library.

What do these tags mean?
matches
The paper's claim is directly supported by a theorem in the formal canon.
supports
The theorem supports part of the paper's argument, but the paper may add assumptions or extra steps.
extends
The paper goes beyond the formal theorem; the theorem is a base layer rather than the whole result.
uses
The paper appears to rely on the theorem as machinery.
contradicts
The paper's claim conflicts with a theorem or certificate in the canon.
unclear
Pith found a possible connection, but the passage is too broad, indirect, or ambiguous to say the theorem truly supports the claim.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score.

  1. Online Orthogonal Vectors Revisited

    cs.DS 2026-05 unverdicted novelty 7.0

    New deterministic algorithms for Online Orthogonal Vectors match or improve prior space-query tradeoffs and refute a 2017 hardness conjecture, with polynomial-space lower bounds under non-uniform SETH.