Skip to content

Commit 4143e63

Browse files
committed
solved(python): baekjoon 11054
1 parent e28ce61 commit 4143e63

4 files changed

Lines changed: 78 additions & 0 deletions

File tree

baekjoon/python/11054/__init__.py

Whitespace-only changes.

baekjoon/python/11054/main.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import sys
2+
3+
read = lambda: sys.stdin.readline().rstrip()
4+
5+
6+
class Problem:
7+
def __init__(self):
8+
self.size = int(read())
9+
self.data = list(map(int, read().split()))
10+
11+
def solve(self) -> None:
12+
up, down = [1] * self.size, [1] * self.size
13+
14+
for end in range(1, self.size):
15+
for start in range(end):
16+
if self.data[start] < self.data[end]:
17+
up[end] = max(up[end], up[start] + 1)
18+
19+
for end in range(self.size - 1, 0, -1):
20+
for start in range(end):
21+
if self.data[start] > self.data[end]:
22+
down[start] = max(down[start], down[end] + 1)
23+
24+
maximum = 0
25+
for idx in range(self.size):
26+
maximum = max(maximum, up[idx] + down[idx] - 1)
27+
print(maximum)
28+
29+
30+
if __name__ == "__main__":
31+
Problem().solve()

baekjoon/python/11054/sample.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[
2+
{
3+
"input": [
4+
"10",
5+
"1 5 2 1 4 3 4 5 2 1"
6+
],
7+
"expected": [
8+
"7"
9+
]
10+
}
11+
]

baekjoon/python/11054/test_main.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import json
2+
import os.path
3+
import unittest
4+
from io import StringIO
5+
from unittest.mock import patch
6+
7+
from parameterized import parameterized
8+
9+
from main import Problem
10+
11+
12+
def load_sample(filename: str):
13+
path = os.path.join(os.path.dirname(os.path.abspath(__file__)), filename)
14+
15+
with open(path, "r") as file:
16+
return [(case["input"], case["expected"]) for case in json.load(file)]
17+
18+
19+
class TestCase(unittest.TestCase):
20+
@parameterized.expand(load_sample("sample.json"))
21+
def test_case(self, case: str, expected: list[str]):
22+
# When
23+
with (
24+
patch("sys.stdin.readline", side_effect=case),
25+
patch("sys.stdout", new_callable=StringIO) as output,
26+
):
27+
Problem().solve()
28+
29+
result = output.getvalue().rstrip()
30+
31+
# Then
32+
self.assertEqual("\n".join(expected), result)
33+
34+
35+
if __name__ == "__main__":
36+
unittest.main()

0 commit comments

Comments
 (0)