Icpc-train-2014/graphs

จาก Theory Wiki
รุ่นแก้ไขเมื่อ 04:53, 2 พฤศจิกายน 2557 โดย Jittat (คุย | มีส่วนร่วม) (หน้าที่ถูกสร้างด้วย '== Outlines == * Basic definitions * Graph search ** Properties of DFS and BFS ** Topological ordering, DAG, strongly connected compon...')
(ต่าง) ←รุ่นแก้ไขก่อนหน้า | รุ่นแก้ไขล่าสุด (ต่าง) | รุ่นแก้ไขถัดไป→ (ต่าง)
ไปยังการนำทาง ไปยังการค้นหา

Outlines

  • Basic definitions
  • Graph search
    • Properties of DFS and BFS
    • Topological ordering, DAG, strongly connected components
  • Coloring
  • Euler tour
  • MST
    • Red/blue rules
  • Shortest paths
    • Optimality criteria
    • Dijkstra's algorithm
    • Graphs with negative weights: Bellman-Ford algorithm, Johnson's algorithm
    • Finding negative cycles
  • Maximum flows
    • Ford-Fulkerson algorithm
    • Flow decomposition
    • Weakly-poly time: largest augmentation
    • Strongly-poly time algorithm: Edmond-Karp
    • Bipartite matching
    • Blocking-flow algorithms.
    • Unit network
  • Min-cost flows