Compare commits
4 commits
acc32964f5
...
bf55c70575
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | bf55c70575 | ||
Bruno BELANYI | 745ebfb958 | ||
Bruno BELANYI | 1b35dcc867 | ||
Bruno BELANYI | 6e3bf64572 |
35
2024/d11/ex1/ex1.py
Executable file
35
2024/d11/ex1/ex1.py
Executable file
|
@ -0,0 +1,35 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
def solve(input: str) -> int:
|
||||||
|
def parse(input: str) -> list[int]:
|
||||||
|
return [int(n) for n in input.split()]
|
||||||
|
|
||||||
|
def blink(stones: list[int]) -> list[int]:
|
||||||
|
res: list[int] = []
|
||||||
|
for n in stones:
|
||||||
|
if n == 0:
|
||||||
|
res.append(1)
|
||||||
|
elif len(str(n)) % 2 == 0:
|
||||||
|
s = str(n)
|
||||||
|
lhs, rhs = s[: len(s) // 2], s[len(s) // 2 :]
|
||||||
|
res.extend((int(lhs), int(rhs)))
|
||||||
|
else:
|
||||||
|
res.append(n * 2024)
|
||||||
|
return res
|
||||||
|
|
||||||
|
stones = parse(input)
|
||||||
|
for _ in range(25):
|
||||||
|
stones = blink(stones)
|
||||||
|
return len(stones)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
input = sys.stdin.read()
|
||||||
|
print(solve(input))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
1
2024/d11/ex1/input
Normal file
1
2024/d11/ex1/input
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0 7 6618216 26481 885 42 202642 8791
|
37
2024/d11/ex2/ex2.py
Executable file
37
2024/d11/ex2/ex2.py
Executable file
|
@ -0,0 +1,37 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import sys
|
||||||
|
from collections import Counter
|
||||||
|
|
||||||
|
|
||||||
|
def solve(input: str) -> int:
|
||||||
|
def parse(input: str) -> Counter[int]:
|
||||||
|
return Counter(int(n) for n in input.split())
|
||||||
|
|
||||||
|
def blink(stones: Counter[int]) -> Counter[int]:
|
||||||
|
res: Counter[int] = Counter()
|
||||||
|
for n, count in stones.items():
|
||||||
|
if n == 0:
|
||||||
|
res[1] += count
|
||||||
|
elif len(str(n)) % 2 == 0:
|
||||||
|
s = str(n)
|
||||||
|
lhs, rhs = s[: len(s) // 2], s[len(s) // 2 :]
|
||||||
|
res[int(lhs)] += count
|
||||||
|
res[int(rhs)] += count
|
||||||
|
else:
|
||||||
|
res[n * 2024] += count
|
||||||
|
return res
|
||||||
|
|
||||||
|
stones = parse(input)
|
||||||
|
for _ in range(75):
|
||||||
|
stones = blink(stones)
|
||||||
|
return sum(stones.values())
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
input = sys.stdin.read()
|
||||||
|
print(solve(input))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
1
2024/d11/ex2/input
Normal file
1
2024/d11/ex2/input
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0 7 6618216 26481 885 42 202642 8791
|
Loading…
Reference in a new issue