-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlib.rs
174 lines (155 loc) · 3.71 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
extern crate core;
use crate::Direction::{Down, Left, Right, Up};
use std::collections::HashMap;
use std::hash::Hash;
pub fn fn1(target: i64) -> i64 {
let mut row = 0;
let mut col = 0;
let mut direction = Right;
let mut max = 1;
if target == 1 {
return 0;
}
for i in 2..=target {
match direction {
Up => {
row -= 1;
if row == -max {
direction = direction.next();
}
}
Down => {
row += 1;
if row == max {
direction = direction.next();
max += 1;
}
}
Left => {
col -= 1;
if col == -max {
direction = direction.next();
}
}
Right => {
col += 1;
if col == max {
direction = direction.next();
}
}
}
}
distance(row, col)
}
fn distance(row: i64, col: i64) -> i64 {
return (row - 0).abs() + (col - 0).abs();
}
#[derive(Debug)]
enum Direction {
Up,
Down,
Left,
Right,
}
impl Direction {
fn next(&self) -> Direction {
match self {
Up => Left,
Down => Right,
Left => Down,
Right => Up,
}
}
}
pub fn fn2(target: i64) -> i64 {
let mut row: i64 = 0;
let mut col: i64 = 0;
let mut direction = Right;
let mut max = 1;
if target == 1 {
return 0;
}
let mut grid: HashMap<(i64, i64), i64> = HashMap::new();
grid.insert((0, 0), 1);
for i in 2..=target {
match direction {
Up => {
row -= 1;
if row == -max {
direction = direction.next();
}
}
Down => {
row += 1;
if row == max {
direction = direction.next();
max += 1;
}
}
Left => {
col -= 1;
if col == -max {
direction = direction.next();
}
}
Right => {
col += 1;
if col == max {
direction = direction.next();
}
}
}
let mut sum = 0;
if let Some(t) = grid.get(&(row - 1, col)) {
sum += t;
}
if let Some(t) = grid.get(&(row - 1, col - 1)) {
sum += t;
}
if let Some(t) = grid.get(&(row, col - 1)) {
sum += t;
}
if let Some(t) = grid.get(&(row + 1, col - 1)) {
sum += t;
}
if let Some(t) = grid.get(&(row + 1, col)) {
sum += t;
}
if let Some(t) = grid.get(&(row + 1, col + 1)) {
sum += t;
}
if let Some(t) = grid.get(&(row, col + 1)) {
sum += t;
}
if let Some(t) = grid.get(&(row - 1, col + 1)) {
sum += t;
}
if sum > target {
return sum;
}
grid.insert((row, col), sum);
}
-1
}
#[cfg(test)]
mod tests {
use super::*;
use std::fs;
#[test]
fn test_fn1_unit() {
assert_eq!(fn1(1), 0);
assert_eq!(fn1(12), 3);
assert_eq!(fn1(23), 2);
assert_eq!(fn1(1024), 31);
}
#[test]
fn test_fn1_input() {
let s = fs::read_to_string("input.txt").unwrap();
assert_eq!(fn1(361527), 326);
}
#[test]
fn test_fn2_input() {
let s = fs::read_to_string("input.txt").unwrap();
assert_eq!(fn2(361527), 363010);
}
}