Skip to content

Commit 1890c85

Browse files
committed
finished chapter_6
1 parent abc2120 commit 1890c85

File tree

6 files changed

+124
-0
lines changed

6 files changed

+124
-0
lines changed

chapter_6/problem_1/Cargo.lock

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chapter_6/problem_1/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "problem_1"
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_6/problem_1/src/main.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
use input::{read_number, read_numline};
2+
3+
fn solve(vec: &Vec<i32>, index: usize, value: i32) -> bool {
4+
if index == vec.len() {
5+
return false
6+
}
7+
if vec[index] == value {
8+
return true
9+
}
10+
11+
let can_solve;
12+
can_solve = solve(vec, index + 1, value - vec[index]) | solve(vec, index + 1, value);
13+
can_solve
14+
}
15+
16+
fn main() {
17+
let _: usize = read_number();
18+
let n_vec: Vec<i32> = read_numline();
19+
let _: usize = read_number();
20+
let s_vec: Vec<i32> = read_numline();
21+
let mut solved_num = 0;
22+
for s in s_vec{
23+
if solve(&n_vec, 0, s) {
24+
solved_num += 1;
25+
}
26+
}
27+
println!("solved count is {}", solved_num);
28+
29+
}

chapter_6/problem_2/Cargo.lock

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chapter_6/problem_2/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "problem_2"
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_6/problem_2/src/main.rs

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
struct Positon {
2+
x: f64,
3+
y: f64,
4+
}
5+
6+
impl Positon {
7+
fn rotate(&self, center: &Positon, deg: f64) -> Positon{
8+
let rad = deg.to_radians();
9+
let x = self.x - center.x;
10+
let y = self.y - center.y;
11+
let rotate_x = x*rad.cos() - y*rad.sin() + center.x;
12+
let rotate_y = x*rad.sin() + y*rad.cos() + center.y;
13+
Positon {
14+
x: rotate_x,
15+
y: rotate_y,
16+
}
17+
}
18+
19+
fn trichotomize(&self, base: &Positon) -> (Positon, Positon) {
20+
let first_position = Positon{x: (self.x - base.x)/3.0 + base.x,
21+
y: (self.y - base.y)/3.0 + base.y,};
22+
let second_position = Positon{x: (self.x - base.x)*2.0/3.0 + base.x,
23+
y: (self.y - base.y)*2.0/3.0 + base.y,};
24+
(first_position, second_position)
25+
}
26+
}
27+
28+
29+
fn konh(depth: i32, p1: &Positon, p2:&Positon) {
30+
if depth == 0 {
31+
return;
32+
}
33+
let (s, t) = p2.trichotomize(p1);
34+
let u = t.rotate(&s, 60.);
35+
konh(depth -1, p1, &s);
36+
println!("{:.3} {:.3}", s.x, s.y);
37+
konh(depth -1, &s, &u);
38+
println!("{:.3} {:.3}", u.x, u.y);
39+
konh(depth -1, &u, &t);
40+
println!("{:.3} {:.3}", t.x, t.y);
41+
konh(depth -1, &t, p2);
42+
}
43+
44+
fn main() {
45+
let p1 = Positon{x:0.0 , y:0.0};
46+
let p2 = Positon{x:100.0 , y:0.0};
47+
let depth = input::read_number();
48+
println!("{:.3} {:.3}", p1.x, p1.y);
49+
konh(depth, &p1, &p2);
50+
println!("{:.3} {:.3}", p2.x, p2.y);
51+
}

0 commit comments

Comments
 (0)