-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay10.sql
81 lines (68 loc) · 1.53 KB
/
Day10.sql
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
create table lines (
number int not null
);
\copy lines (number) from program 'cat input.txt';
drop table if exists chain;
create table chain (
id serial not null,
number int not null
);
insert into chain (number) values (0);
insert into chain (number)
select number
from lines
order by number;
insert into chain (number)
select max(number) + 3
from lines;
drop table lines;
select exp(sum(ln(multiplier))) as first
from (
select count(*) as multiplier
from chain First, chain Second
where First.number + 1 = Second.number
union
select count(*) as multiplier
from chain First, chain Second
where First.number + 3 = Second.number
and not exists (
select First.number
from chain Third
where First.number + 1 = Third.number
)
) ONES_AND_THREES;
drop table if exists ways;
create table ways (
id serial not null,
number bigint not null
);
insert into ways (number) select 0 from chain;
update ways set number = 1 where id = 1;
create or replace function CountWays() returns void
as
$$
declare t_row ways%rowtype;
begin
FOR t_row in select * from chain order by id
loop
update ways
set number = (
select sum(number)
from ways
where id in (
select Previous.id
from chain Previous, (
select number
from chain
where chain.id = t_row.id
) Fixed
where Fixed.number - Previous.number <= 3
)
)
where id = t_row.id;
end loop;
end;
$$
language plpgsql;
select CountWays();
select max(number) as second from ways;