Skip to main content

Questions tagged [graph-algorithms]

Algorithms on graphs, excluding heuristics.

2 votes
0 answers
53 views

I'm interested in vertex-disjoint packing of induced $P_3$s (paths on three vertices) and their complements. Is this problem NP-hard? Observation: A graph is $\{P_3, \overline{P_3}\}$-free if and only ...
Yixin Cao's user avatar
  • 2,619
0 votes
0 answers
64 views

Given a graph with $n$ nodes where some of the edges are defective and two nodes $u,v$ of the graph which are not connected by a path of non defective edges, I am allowed to query any two nodes $a,b$ ...
Hao S's user avatar
  • 358
-1 votes
1 answer
51 views

Let $G = (V, E)$ be a graph. Each edge $e = (u, v) $ is associated with a failure probability $0 \leq q_e < 1$. Given two vertices $s, t \in V$, the $s$−$t$ reliability problem asks the ...
Hao S's user avatar
  • 358
1 vote
1 answer
125 views

I have the following graph optimization problem. In a directed graph G, each node $v$ is assigned a number $n(v)$ which is initially 0. At any time, I can make a move to assign the number $ max \{ n(...
Hao S's user avatar
  • 358
2 votes
1 answer
1k views

A recent publication (Duan, Ran, et al. "Breaking the Sorting Barrier for Directed Single-Source Shortest Paths." Proceedings of the 57th Annual ACM Symposium on Theory of Computing. 2025) ...
TRP's user avatar
  • 83
1 vote
1 answer
128 views

Let $G$ be a directed graph obtained from the union of two tournaments $T_1$ and $T_2$ on the same vertex set, plus a loop arc on each vertex. We can assume that the tournaments $T_1$ and $T_2$ are ...
Arnaud Casteigts's user avatar
2 votes
1 answer
99 views

I have an explicit graph (not too big) and I want to compute its treewidth. Is there a Web tool where I can provide the graph (given, e.g., by its explicit list of edges) and obtain its treewidth?
Antoine Amarilli 'a3nm''s user avatar
2 votes
0 answers
74 views

According to the Information System on Graph Classes and their Inclusions (ISGCI) database, the complexity class of the MAXCUT problem for the following graph families (and) is still unknown. How ...
Omar Shehab's user avatar
5 votes
0 answers
123 views

We are looking for any known algorithms/lower bounds related the the following problem: Enumerate all spanning trees of a complete graph by edits with constant delay (linear time preprocessing allowed)...
rem's user avatar
  • 151
0 votes
1 answer
403 views

I am a recent CS Grad, and I wrote a preprint about a algorithm for MST, with time complexity O(E+VlogV) and Ω(E) in the worst and base cases, respectively; given sorted edges. I feel like it is a ...
sabih ul hassan's user avatar
6 votes
1 answer
166 views

I’m writing a “choose your own adventure” style book. Each page contains some text followed by a series of options, each of which instructs the reader to turn to a different page. I can model the ...
templatetypedef's user avatar
7 votes
1 answer
192 views

This question is about the reachability problem finding a path from a vertex $s$ to a vertex $t$ in a directed graph $G = (V, E)$ subject to a specific kind of exclusive pairs requirement. Formally, ...
Galipeth's user avatar
0 votes
1 answer
56 views

The problem is to find the minimum number of stages in which we can finish a set of processes, where we have a maximum number of processes we can do per stage, and there are prerequisites for the ...
Javier's user avatar
  • 1
-2 votes
1 answer
178 views

Consider a poly-time algorithm that attempts to solve the GI problem on general graphs. However, the algorithm can only guarantee that it correctly decides the problem for a specific range of values ...
Pawan Aurora's user avatar
2 votes
1 answer
375 views

It is known that counting cycles in a graph is a hard problem (#P-hard). However, what do we know about the following problem: Given a simple, undirected graph $G$ and an edge $e$ of $G$ as input, ...
Sheikh Shakil Akhtar's user avatar

15 30 50 per page
1
2 3 4 5
73