Home Technology peripherals AI A new breakthrough was made in the minimum cut problem of undirected graphs, and Google research won the SODA 2024 Best Paper Award

A new breakthrough was made in the minimum cut problem of undirected graphs, and Google research won the SODA 2024 Best Paper Award

Apr 17, 2024 pm 09:58 PM
Google project

Google blog released new research to solve the minimum cut problem of undirected graphs.

In 1996, American computer scientist David R Karger and other researchers proposed a new approach to the minimum cut problem in the paper "A new approach to the minimum cut problem" The surprisingly random algorithm Karger's algorithm is very important in theoretical computer science and is especially suitable for approximate minimum cut problems on large-scale graphs.

Karger's algorithm can find a minimum cut point in a graph with time O (m log^3n). They call this time nearly linear time, which means Linearly multiplied by a polylog factor.

In a blog just updated by Google, they introduced a previously published paper "Deterministic Near-Linear Time Minimum Cut in Weighted Graphs", and the research obtained ACM-SIAM SODA24 Best Paper Award. The article details a new algorithm that runs in almost linear time (rather than near linear time). This algorithm is deterministic and can reliably find the correct minimum cut. It improves the previous algorithm that may not be guaranteed to be correct or only applicable to Algorithms for simple graphs. Arguably this is the biggest discovery since Karger's famous randomization algorithm.
无向图最小割问题取得新突破,谷歌研究获SODA 2024最佳论文奖
  • Paper address: https://arxiv.org/pdf/2401.05627.pdf
  • Paper Title: Deterministic Near-Linear Time Minimum Cut in Weighted Graphs

Note: The minimum cut problem (often called minimum cut) is about graph connectivity The basic structural question, which generally focuses on what is the simplest way to disconnect the network? In graph theory, the set of edges that can make a network flow graph no longer connected (that is, divided into two subgraphs) by removing all the edges is called a cut of the graph, and the smallest cut on a graph is called a minimum cut.
无向图最小割问题取得新突破,谷歌研究获SODA 2024最佳论文奖
##                                                                                                                                                                                                                                                                     ​A minimal cut of a graph (containing two edges).

Method introduction

Regarding the minimum cut problem, Karger In 1996, he pioneered a nearly linear time random algorithm that can find the minimum cut with a high probability. This work also gave a key insight that there is a smaller graph, which is in All cut sizes are largely preserved.

This finding is useful because slower algorithms can be run using smaller graphs as input, and slower running times (for smaller graphs in terms of size) can still be close to linear with the size of the original (larger) graph.

#In fact, many structural discoveries about the minimum cut problem are carried out along this direction.

Google does this, starting from a graph G with n nodes, and then based on the paper "Randomized Approximation Schemes for Cuts and Flows in Capacitated Graphs" (authored by Benzur The cut-preserving sparsification method proposed by , Karger proved that it is possible to construct a sparse weighted graph G' with fewer edges, and on this graph, the size of almost all cuts is roughly the same as the size of the corresponding cuts in the original graph G.

This concept can be illustrated by the following example: the original graph consists of two complete graphs connected by a single edge, while the sparsified graph has fewer edges, but Edges are weighted more heavily, while the size of all cuts is roughly preserved.

无向图最小割问题取得新突破,谷歌研究获SODA 2024最佳论文奖

To construct this sparser graph, Benzur and Karger adopted the method of independently sampling edges. In this method, each edge in the graph G has a certain probability of being included in the graph G', and its weight in G' will be amplified according to the inverse of the sampling probability (for example, if an edge's original weight is 1 The edge is included with a probability of 10%, then its weight is adjusted to 10). It turns out that this very simple (almost linear time) approach can construct cut-preserving graph sparsifications with a high probability of success.

However, the Karger algorithm is a Monte Carlo algorithm, that is, the output may be incorrect with a small probability, and there is no There are known methods to determine whether the output is correct.

# Therefore, researchers have been working hard to explore ways to solve the open problem of near-linear time deterministic algorithms. Since the construction of cut-preserving graph sparsification is the only stochastic component in Karger's algorithm, one approach is to find a deterministic construction of the sparsification in near-linear time (also called derandomization).

In 2015, Kawarabayashi and Thorup achieved an important milestone - finding a graph for a simple graph (that is, there is at most one edge between each pair of nodes and all edge weights are equal to 1 graph) of a deterministic near-linear time algorithm.

The study leads to a key idea, that is, there is some connection between the minimum cut and another important graph structure (called "low-conductance cut"). This connection was crucial to later derandomizing Karger's algorithm on general edge-weighted graphs, and helped Google derive its new algorithm.

Alignment of minimum cut and low-conductance cut

Conductance of graph cut S Defined as the ratio of the cut size of S to the volume of S (assuming that S is the smaller volume side of the cut and non-empty), where the volume of S is the degree of the node in S.

# A low-conductance cut S intuitively captures the bottleneck in the network, since only a small number of edges (relative to its volume) connect S to the rest of the graph. The conductance of a graph is defined as the minimum conductance for any cut in the graph, and graphs with large conductance (also called extended graphs) are said to be well connected because there are no bottlenecks inside.
无向图最小割问题取得新突破,谷歌研究获SODA 2024最佳论文奖
## This red dotted line indicates that the CUT size is 2, and the smaller side (bottom) volume is 24, so the confptance is 1/12, this It is also the conductance of the graph.

Kawayabarashi and Thorup observed that in simple graphs with large minimum node degrees, any nontrivial (i.e., having at least two nodes on either side ) minimum cut must have low conductance. Based on this observation, if the graph can be partitioned into well-connected clusters, then the partitioning must be consistent with every nontrivial minimal cut, since every cluster must lie exactly on one side of every cut. Then, each cluster is shrunk to a node and a smaller graph is processed where all non-trivial minimum cuts of the original graph are intact.

However, for weighted graphs, the above observation no longer holds, and the same partitioning used in the simple graph case may not be exactly consistent with non-trivial minimum cuts.

As shown in the figure below, Jason Li observed in 2021 that this division is still roughly consistent with non-trivial minimum cuts. In particular, for a non-trivial minimal cut S, there is a cut S' that is similar to S such that S' is consistent with the cluster. Jason Li further observed that this property of partitioning can be exploited to effectively de-randomize the construction of cut-preserving graph sparsity.

无向图最小割问题取得新突破,谷歌研究获SODA 2024最佳论文奖

#The new algorithm designed by Google aims to construct a partition to formulate the use case of minimum cut. The Google study is more precise and faster than the more general, off-the-shelf methods Jason Li used in previous work. The new research optimizes the running time while ensuring accuracy, and finally achieves a near-linear time deterministic algorithm for the minimum cut problem.

Reference link: https://research.google/blog/solving-the-minimum-cut-problem-for-undirected-graphs/

The above is the detailed content of A new breakthrough was made in the minimum cut problem of undirected graphs, and Google research won the SODA 2024 Best Paper Award. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to comment deepseek How to comment deepseek Feb 19, 2025 pm 05:42 PM

DeepSeek is a powerful information retrieval tool. Its advantage is that it can deeply mine information, but its disadvantages are that it is slow, the result presentation method is simple, and the database coverage is limited. It needs to be weighed according to specific needs.

How to search deepseek How to search deepseek Feb 19, 2025 pm 05:39 PM

DeepSeek is a proprietary search engine that only searches in a specific database or system, faster and more accurate. When using it, users are advised to read the document, try different search strategies, seek help and feedback on the user experience in order to make the most of their advantages.

Sesame Open Door Exchange Web Page Registration Link Gate Trading App Registration Website Latest Sesame Open Door Exchange Web Page Registration Link Gate Trading App Registration Website Latest Feb 28, 2025 am 11:06 AM

This article introduces the registration process of the Sesame Open Exchange (Gate.io) web version and the Gate trading app in detail. Whether it is web registration or app registration, you need to visit the official website or app store to download the genuine app, then fill in the user name, password, email, mobile phone number and other information, and complete email or mobile phone verification.

Why can't the Bybit exchange link be directly downloaded and installed? Why can't the Bybit exchange link be directly downloaded and installed? Feb 21, 2025 pm 10:57 PM

Why can’t the Bybit exchange link be directly downloaded and installed? Bybit is a cryptocurrency exchange that provides trading services to users. The exchange's mobile apps cannot be downloaded directly through AppStore or GooglePlay for the following reasons: 1. App Store policy restricts Apple and Google from having strict requirements on the types of applications allowed in the app store. Cryptocurrency exchange applications often do not meet these requirements because they involve financial services and require specific regulations and security standards. 2. Laws and regulations Compliance In many countries, activities related to cryptocurrency transactions are regulated or restricted. To comply with these regulations, Bybit Application can only be used through official websites or other authorized channels

Sesame Open Door Trading Platform Download Mobile Version Gateio Trading Platform Download Address Sesame Open Door Trading Platform Download Mobile Version Gateio Trading Platform Download Address Feb 28, 2025 am 10:51 AM

It is crucial to choose a formal channel to download the app and ensure the safety of your account.

Top 10 recommended for crypto digital asset trading APP (2025 global ranking) Top 10 recommended for crypto digital asset trading APP (2025 global ranking) Mar 18, 2025 pm 12:15 PM

This article recommends the top ten cryptocurrency trading platforms worth paying attention to, including Binance, OKX, Gate.io, BitFlyer, KuCoin, Bybit, Coinbase Pro, Kraken, BYDFi and XBIT decentralized exchanges. These platforms have their own advantages in terms of transaction currency quantity, transaction type, security, compliance, and special features. For example, Binance is known for its largest transaction volume and abundant functions in the world, while BitFlyer attracts Asian users with its Japanese Financial Hall license and high security. Choosing a suitable platform requires comprehensive consideration based on your own trading experience, risk tolerance and investment preferences. Hope this article helps you find the best suit for yourself

Sesame Open Door Exchange Web Page Login Latest version gateio official website entrance Sesame Open Door Exchange Web Page Login Latest version gateio official website entrance Mar 04, 2025 pm 11:48 PM

A detailed introduction to the login operation of the Sesame Open Exchange web version, including login steps and password recovery process. It also provides solutions to common problems such as login failure, unable to open the page, and unable to receive verification codes to help you log in to the platform smoothly.

Binance binance official website latest version login portal Binance binance official website latest version login portal Feb 21, 2025 pm 05:42 PM

To access the latest version of Binance website login portal, just follow these simple steps. Go to the official website and click the "Login" button in the upper right corner. Select your existing login method. If you are a new user, please "Register". Enter your registered mobile number or email and password and complete authentication (such as mobile verification code or Google Authenticator). After successful verification, you can access the latest version of Binance official website login portal.

See all articles