Skip to content

Commit c7609f6

Browse files
committed
finished chapter 15
1 parent 5e5ba24 commit c7609f6

File tree

11 files changed

+211
-4
lines changed

11 files changed

+211
-4
lines changed

chapter_15/bellman_ford/input1.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
4 5 0
2+
0 1 2
3+
0 2 3
4+
1 2 -5
5+
1 3 1
6+
2 3 2

chapter_15/bellman_ford/input2.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
4 6 0
2+
0 1 2
3+
0 2 3
4+
1 2 -5
5+
1 3 1
6+
2 3 2
7+
3 1 0

chapter_15/bellman_ford/input3.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
4 5 1
2+
0 1 2
3+
0 2 3
4+
1 2 -5
5+
1 3 1
6+
2 3 2

chapter_15/bellman_ford/src/main.rs

+56-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
/// ベルマンフォードアルゴリズム理解
2+
/// 0番目(始点)のコストは自明, 負の閉路がなければ必ず0となる
3+
/// i番目 ノードXに到達する最短のパスは必ず始点より開始されるため,
4+
/// 1回目のスキャンで始点の次に訪問するノードへのコストは必ず確定する
5+
/// すなわち, どのノードへの経路でも始点からスタートする以上そのノードへの始点最小経路が求まる
6+
/// これを繰り返すことで, 最小経路のノードが始点から近い順に求まっていく
7+
/// V-1回目ですべてが確定する
8+
fn bellman_ford(start_node: usize, node_count: usize, graph: &mut Vec<Vec<(usize, i32)>>, cost_from_start: &mut Vec<i32>) -> bool{
9+
cost_from_start[start_node] = 0;
10+
for i in 0..node_count {
11+
for (from_node, path_from_node) in graph.iter().enumerate() {
12+
for (to_node, cost_to) in path_from_node {
13+
if cost_from_start[*to_node] > cost_from_start[from_node] + cost_to {
14+
// update cost
15+
if i != node_count -1 {
16+
cost_from_start[*to_node] = cost_from_start[from_node] + cost_to;
17+
} else {
18+
// this means graph has negative circuit
19+
return true;
20+
}
21+
}
22+
}
23+
}
24+
}
25+
false
26+
}
27+
28+
129
fn main() {
2-
println!("Hello, world!");
30+
let input_info: Vec<usize> = input::read_numline();
31+
let node_count = input_info[0];
32+
let input_lines = input_info[1];
33+
let start_node = input_info[2];
34+
let mut graph: Vec<Vec<(usize, i32)>> = vec![vec![]; node_count];
35+
let mut cost_from_start: Vec<i32> = vec![100000000; node_count];
36+
37+
for _ in 0..input_lines {
38+
let input_line: Vec<i32> = input::read_numline();
39+
let from_node = input_line[0] as usize;
40+
let to_node = input_line[1] as usize;
41+
let cost = input_line[2];
42+
graph[from_node].push((to_node, cost));
43+
}
44+
let is_negative_cirkit = bellman_ford(start_node, node_count, &mut graph, &mut cost_from_start);
45+
46+
if is_negative_cirkit {
47+
println!("NEGATIVE CIRCUIT");
48+
return;
49+
}
50+
51+
for node in 0..node_count {
52+
if cost_from_start[node] == 100000000 {
53+
println!("INF");
54+
} else {
55+
println!("{}", cost_from_start[node]);
56+
}
57+
}
358
}

chapter_15/topological_sort/Cargo.lock

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "topological_sort"
3+
version = "0.1.0"
4+
authors = ["Yohei Osawa <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]
10+
input = {path = "../../library/input"}

chapter_15/topological_sort/input.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
6 6
2+
0 1
3+
1 2
4+
3 1
5+
3 4
6+
4 5
7+
5 2
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
fn topological_sort(start_node: usize, graph: &mut Vec<Vec<usize>>,
2+
order: &mut Vec<usize>, node_order_decided: &mut Vec<bool>, inflow_count: &mut Vec<usize>) {
3+
4+
let mut search_node_stack: Vec<usize> = vec![];
5+
6+
search_node_stack.push(start_node);
7+
8+
while !search_node_stack.is_empty() {
9+
let decided_node = search_node_stack.pop().unwrap();
10+
node_order_decided[decided_node] = true;
11+
order.push(decided_node);
12+
13+
for to_node in &graph[decided_node] {
14+
inflow_count[*to_node] -= 1;
15+
16+
if inflow_count[*to_node] == 0 && node_order_decided[*to_node] == false {
17+
search_node_stack.push(*to_node);
18+
}
19+
}
20+
}
21+
}
22+
23+
fn topological_sort_prepare(node_count: usize, graph: &mut Vec<Vec<usize>>, order: &mut Vec<usize>) {
24+
let mut inflow_count: Vec<usize> = vec![0; node_count];
25+
let mut node_order_decided: Vec<bool> = vec![false; node_count];
26+
for node in graph.iter() {
27+
for to_node in node {
28+
inflow_count[*to_node] += 1;
29+
}
30+
}
31+
for node in 0..node_count {
32+
if inflow_count[node] == 0 && node_order_decided[node] == false {
33+
topological_sort(node, graph, order, &mut node_order_decided, &mut inflow_count);
34+
}
35+
}
36+
}
37+
38+
fn main() {
39+
let input_info: Vec<usize> = input::read_numline();
40+
let node_count = input_info[0];
41+
let input_line_count = input_info[1];
42+
let mut order: Vec<usize> = vec![];
43+
let mut graph: Vec<Vec<usize>> = vec![vec![]; node_count];
44+
45+
for _ in 0..input_line_count {
46+
let input_line: Vec<usize> = input::read_numline();
47+
let node_from = input_line[0];
48+
let node_to = input_line[1];
49+
graph[node_from].push(node_to);
50+
}
51+
52+
topological_sort_prepare(node_count, &mut graph, &mut order);
53+
54+
for node in &order {
55+
println!("{}", *node);
56+
}
57+
58+
}

chapter_15/warshall_floyd/input3.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
1 2 2
55
1 3 4
66
2 3 1
7-
3 2 -7
7+
3 2 -7

chapter_15/warshall_floyd/src/main.rs

+47-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
fn warshall_ford(node_count: usize, cost_to_node: &mut Vec<Vec<i64>>) {
2+
for interchange_node in 0..node_count {
3+
for node_from in 0..node_count {
4+
for node_to in 0..node_count {
5+
let cost_by_interchange: i64 = cost_to_node[node_from][interchange_node] as i64 + cost_to_node[interchange_node][node_to] as i64;
6+
if cost_to_node[node_from][node_to] > cost_by_interchange {
7+
cost_to_node[node_from][node_to] = cost_by_interchange;
8+
}
9+
}
10+
}
11+
}
12+
}
13+
114
fn main() {
2-
println!("Hello, world!");
15+
let input_info: Vec<usize> = input::read_numline();
16+
let node_count = input_info[0];
17+
let input_lines = input_info[1];
18+
let mut cost_to_node: Vec<Vec<i64>> = vec![vec![i32::MAX as i64; node_count]; node_count];
19+
20+
for _ in 0..input_lines {
21+
let node_relation: Vec<i64> = input::read_numline();
22+
let node1 = node_relation[0] as usize;
23+
let node2 = node_relation[1] as usize;
24+
let cost = node_relation[2] as i64;
25+
cost_to_node[node1][node2] = cost;
26+
}
27+
for node in 0..node_count {
28+
cost_to_node[node][node] = 0;
29+
}
30+
31+
warshall_ford(node_count, &mut cost_to_node);
32+
for node in 0..node_count {
33+
if cost_to_node[node][node] < 0 {
34+
println!("NEGATIVE CYCLE");
35+
return;
36+
}
37+
}
38+
39+
for cost_vec in &cost_to_node {
40+
for cost in cost_vec {
41+
if *cost == i32::MAX as i64{
42+
print!("INF ");
43+
} else {
44+
print!("{} ", *cost);
45+
}
46+
}
47+
print!("\n");
48+
}
349
}

chapter_9/binary_search/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fn successor<T>(mut next: &mut Link<T>) -> &mut Link<T> {
107107
// Removes a node, either by simply discarding it if it is a leaf, or by swapping it with
108108
// its inorder successor (which, in this case, is always in a leaf) and then deleting the leaf.
109109
fn delete_node<T>(link: &mut Link<T>) {
110-
if let Some(mut boxed_node) = link.take() {
110+
if let Some(mut boxed_node) = link.take() {
111111
match (boxed_node.left.take(), boxed_node.right.take()) {
112112
(None, None) => (),
113113
(Some(left), None) => *link = Some(left),

0 commit comments

Comments
 (0)