Compare commits

..

6 Commits

Author SHA1 Message Date
d1f57e70c1 z
All checks were successful
build pdf / build (push) Successful in 4s
2025-12-30 16:39:16 +08:00
b55fbc0e32 z 2025-12-30 15:12:44 +08:00
922ee2e2a4 Update compile.yml
All checks were successful
build pdf / build (push) Successful in 4s
2025-12-30 14:09:45 +08:00
90efebad98 test new act_runner
All checks were successful
build pdf / build (push) Successful in 5s
2025-12-30 14:00:15 +08:00
5a0338c3e0 moloch + fira
Some checks failed
build pdf / build (push) Failing after 3s
2025-12-30 13:21:48 +08:00
3b68160c83 fix latexmk
All checks were successful
build pdf / build (push) Successful in 4s
2025-12-23 19:10:15 +08:00
3 changed files with 68 additions and 10 deletions

View File

@@ -17,7 +17,6 @@ jobs:
- uses: http://localhost:3000/sxlxc/gitea-release-action@v1 - uses: http://localhost:3000/sxlxc/gitea-release-action@v1
with: with:
body: '' body: ''
prerelease: true
name: PDF name: PDF
token: ${{ secrets.RELEASE_TOKEN }} token: ${{ secrets.RELEASE_TOKEN }}
tag_name: latest tag_name: latest

View File

@@ -1,2 +1,2 @@
$xelatex = 'xelatex -interaction=nonstopmode -synctex=1 %O %S'; $pdflatex = 'xelatex -interaction=nonstopmode -synctex=1';
$pdf_mode = 5; $pdf_mode = 1;

View File

@@ -1,13 +1,72 @@
\documentclass{beamer} \RequirePackage{scrlfile}
\usetheme{metropolis} \makeatletter
\AfterPackage{beamerbasemodes}{\beamer@amssymbfalse}
\makeatother
\documentclass[aspectratio=169,handout]{beamer}
\usefonttheme{professionalfonts}
\usetheme{moloch} % new metropolis
% fonts
\usepackage{fontspec}
\setsansfont[
ItalicFont={Fira Sans Italic},
BoldFont={Fira Sans Medium},
BoldItalicFont={Fira Sans Medium Italic}
]{Fira Sans}
\setmonofont[BoldFont={Fira Mono Medium}]{Fira Mono}
\AtBeginEnvironment{tabular}{%
\addfontfeature{Numbers={Monospaced}}
}
\usepackage{lete-sans-math}
\usepackage{booktabs}
\title{Connectivity Interdiction \& \\ Perturbed Graphic Matroid Cogirth} \title{Connectivity Interdiction \& \\ Perturbed Graphic Matroid Cogirth}
\date{\today} \date{\today}
\author{congyu} \author{Cong Yu}
\institute{A\&L Group, UESTC} \institute{Algorithm \& Logic Group, UESTC}
\begin{document} \begin{document}
\maketitle \maketitle
\section{First Section} \section{Connectivity interdiction}
\begin{frame}{First Frame} \begin{frame}{Connectivity interdiction}
Hello, world! \textit{What is the maximum change of edge connectivity in a network when some limited set of edges is being removed?}
\pause
\medskip
\begin{problem}[Zenklusen ORL'14]
Let $G=(V,E)$ be a graph with edge capacity $c:E\to\mathbb{Z}_+$ and edge removal costs $w:E\to\mathbb{Z}_+$ and let $B\in \mathbb Z_+$ be the budget.
Find $F\subset E$ with $w(F)\leq B$ s.t. the min-cut in $G-F$ is minimized.
\end{problem}
\pause
\medskip
connectivity interdiction $\approx$ min-cut + knapsack
Is there an FPTAS?
\end{frame}
\begin{frame}{Previous works}
\begin{table}[h]
\centering
\begin{tabular}{c c c c}
\toprule
unit cost $w(\cdot)=1$ & general case & random? & ref \\
\midrule
$O(m^2n^4\log n)$ & $O(m^{2+1/\varepsilon}n^4\log n)$ & $\times$ & [Zenklusen ORL'14] \\
$O(mn^4\log^2 n)$ & $O(m^{1+1/\varepsilon}n^4\log^2 n)$ & $\checkmark$ & [Zenklusen ORL'14] \\
$\tilde O(m+n^4 B)$ & $O(\frac{m^2n^4}{\varepsilon}\log(Bnc_{\max}))$ & $\times$ & [C.-C. Huang et al. IPCO'24]\\
$\tilde O(n^3m\log c_{\max})$ & - & $\checkmark$ & [Drange et al. AAAI'26]\\
$\tilde O(m^2+n^3B)$ & $\tilde O(m^2+mn^3+\frac{n^3}{\varepsilon})$ & $\times$ & this work\\
$\tilde O(m+n^3B)$ & $\tilde O(mn^3+\frac{n^3}{\varepsilon})$ & $\checkmark$ & this work\\
\bottomrule
\end{tabular}
\caption{PTASes for connectivity interdiction}
\end{table}
\end{frame}
\section{Computing cogirth in perturbed graphic matroids}
\begin{frame}{Perturbed graphic matroids}
\end{frame} \end{frame}
\end{document} \end{document}