Skip to content

Commit 3b6a72a

Browse files
committed
problem 31 of project euler
1 parent 98a1afd commit 3b6a72a

File tree

2 files changed

+124
-0
lines changed

2 files changed

+124
-0
lines changed

rs/p031_coin_sum.rs

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
//problem 31 of project euler
2+
//coin sums
3+
4+
const LEN : usize = 8;
5+
const COINS :[u8;LEN]=[200,100,50,20,10,5,2,1];
6+
const MAX :u8= 200;
7+
8+
9+
fn sum(ary:&[u8])->bool{
10+
let mut s:usize = 0;
11+
for i in 0..ary.len() {
12+
s += ((ary[i] as usize) * (COINS[i] as usize)) as usize;
13+
if s > MAX as usize{
14+
return false;
15+
}
16+
}
17+
if s == (MAX as usize ) {
18+
true
19+
} else {
20+
false
21+
}
22+
23+
}
24+
25+
fn increase(ary:&mut [u8])->bool{
26+
let mut index :usize = 0;
27+
28+
loop {
29+
let max = MAX / COINS[index];
30+
if ary[index] < max {
31+
ary[index]+=1;
32+
return true; //able to continue
33+
} else {
34+
if index +1 >= ary.len(){
35+
return false;
36+
}
37+
ary[index]=0;
38+
index += 1;
39+
}
40+
}
41+
}
42+
43+
fn main (){
44+
let mut num_coins:[u8;LEN]=[0;LEN];
45+
46+
47+
let mut total :usize = 0;
48+
49+
50+
51+
loop {
52+
let s = sum(&num_coins);
53+
54+
if s {
55+
total += 1;
56+
if total % 500 == 0 {println!("total reaches={}", total)};
57+
}
58+
let go_on=increase(&mut num_coins);
59+
if !go_on {break;}
60+
61+
62+
63+
}
64+
65+
println!("total={}",total);
66+
67+
68+
69+
}
70+
71+
72+

rs/p031_coin_sum2.rs

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
//problem 31 of project euler
2+
//coin sums
3+
4+
const LEN : usize = 8;
5+
const COINS :[u8;LEN]=[200,100,50,20,10,5,2,1];
6+
const MAX :u8= 200;
7+
8+
//this method return the number of ways to give the changes.
9+
//it is a recursive method.
10+
//the strategy shall be divide and counquer(divide the task of size n to sub tasks of size n-1 and 1).
11+
//it can be improved to use the dynamic programming strategy(store the intermediate result in a map and query it before calculation).
12+
//My first way of try solving this issue is a brute-force(or enumerate) way, it does not work because it takes so long time.
13+
fn f(index:usize,max:usize)->usize{
14+
let coin_value = COINS[index] as usize;
15+
if index == 0 {
16+
if max / coin_value > 0 && max % coin_value == 0 {
17+
return 1; //1 way
18+
} else {
19+
return 0; //no way
20+
}
21+
}
22+
23+
if max == 0 {
24+
return 0;
25+
}
26+
//previous solutions + solutions only using the coins in index column
27+
let mut sum:usize = f(index - 1, max);
28+
if max / coin_value > 0 && max % coin_value == 0 {
29+
sum += 1;
30+
}
31+
let mut i:usize = 1;
32+
loop {
33+
let scale = i*coin_value ;
34+
if max > scale{
35+
let next_max = max-scale ;
36+
sum += f(index-1,next_max) ;
37+
} else {
38+
break;
39+
}
40+
i += 1;
41+
}
42+
sum
43+
44+
}
45+
46+
fn main (){
47+
let total = f(LEN-1,MAX as usize);
48+
println!("total={}",total);
49+
}
50+
51+
52+

0 commit comments

Comments
 (0)