-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
55 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import sys | ||
|
||
def input() : return sys.stdin.readline().rstrip() | ||
|
||
N = int(input()) | ||
# N <= 100 A <= 500 B <= 500 -> ์ํ์ผ๋ก ํ๋ฉด ์ญ์ ์๊ฐ์ด๊ณผ | ||
info = [list(map(int, input().split())) for _ in range(N)] | ||
|
||
info.sort() | ||
|
||
LIS = [1] * N | ||
|
||
for i in range(1, N): | ||
for j in range(i): | ||
if info[j][1] < info[i][1]: | ||
LIS[i] = max(LIS[i], LIS[j] + 1) | ||
|
||
print(N-max(LIS)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
## โ๏ธ ๊ธฐ๋ก | ||
|
||
| ์ฐจ์ | ๋ ์ง | ๋ฌธ์ ์ ํ | ๋งํฌ | ํ์ด | | ||
| :----: | :--------: | :------: | :-----------------------------------------------------------------------------------: | :-------------------------------------------------: | | ||
| 1์ฐจ์ | 2024.03.05 | ํ | [ํ๋ก์ธ์ค](https://school.programmers.co.kr/learn/courses/30/lessons/42587) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/151 | | ||
| 2์ฐจ์ | 2024.03.07 | ํ | [๋ค๋ฆฌ๋ฅผ ์ง๋๋ ํธ๋ญ](https://school.programmers.co.kr/learn/courses/30/lessons/42583) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/153 | | ||
| 3์ฐจ์ | 2024.03.10 | ํ | [N๋ฒ์งธ ํฐ ์](https://www.acmicpc.net/problem/2075) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/156 | | ||
| 4์ฐจ์ | 2024.03.13 | ํ | [๋ฌธ์ ์ง](https://www.acmicpc.net/problem/1766) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/158 | | ||
| 5์ฐจ์ | 2024.03.16 | ๊ตฌํ | [์์ธํธ์ค ๋ฌธ์ ](https://www.acmicpc.net/problem/1158) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/161 | | ||
| 6์ฐจ์ | 2024.03.19 | ์คํ | [์คํฐ์](https://www.acmicpc.net/problem/17298) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/164 | | ||
| 7์ฐจ์ | 2024.03.22 | DP | [1,2,3 ๋ํ๊ธฐ](https://www.acmicpc.net/problem/9095) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/166 | | ||
| 8์ฐจ์ | 2024.03.16 | DP | [์ฌ์ด ๊ณ๋จ ์](https://www.acmicpc.net/problem/10844) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/170 | | ||
| 9์ฐจ์ | 2024.03.22 | DP | [RGB๊ฑฐ๋ฆฌ 2](https://www.acmicpc.net/problem/17404) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/172 | | ||
| 10์ฐจ์ | 2024.04.03 | BFS | [์จ๋ฐ๊ผญ์ง 4](https://www.acmicpc.net/problem/13913) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/177 | | ||
| 11์ฐจ์ | 2024.04.07 | ๊ตฌํ | [์ฌํ ๊ฒ์](https://www.acmicpc.net/problem/9095) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/178 | | ||
| 12์ฐจ์ | 2024.04.09 | DFS | [ABCDE](https://www.acmicpc.net/problem/13023) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/180 | | ||
| 13์ฐจ์ | 2024.05.06 | ์์ ํ์ | [๋ฆฌ๋ชจ์ปจ](https://www.acmicpc.net/problem/1107) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/181 | | ||
| 14์ฐจ์ | 2024.05.09 | DFS | [์นํจ๋ฐฐ๋ฌ](https://www.acmicpc.net/problem/15686) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/183 | | ||
| 15์ฐจ์ | 2024.05.14 | ๊ทธ๋ฆฌ๋ | [A์ B](https://www.acmicpc.net/problem/12904) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/188 | | ||
| 16์ฐจ์ | 2024.05.14 | BFS | [๋ฑ๊ณผ ์ฌ๋ค๋ฆฌ ๊ฒ์](https://www.acmicpc.net/problem/16928) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/191 | | ||
| 17์ฐจ์ | 2024.05.22 | BFS | [์ ๋ก์์ฝ](https://www.acmicpc.net/problem/10026) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/195 | | ||
| 18์ฐจ์ | 2024.05.26 | DFS | [๊ณ๋์ผ๋ก ๊ณ๋์น๊ธฐ](https://www.acmicpc.net/problem/16987) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/199 | | ||
| 19์ฐจ์ | 2024.05.31 | DP | [ํฉ๋ถํด](https://www.acmicpc.net/problem/2225) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/202 | | ||
| 20์ฐจ์ | 2024.06.03 | ๋ฐฑํธ๋ํน | [์คํํธ์ ๋งํฌ](https://www.acmicpc.net/problem/14889) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/206 | | ||
| 21์ฐจ์ | 2024.06.07 | ๊ทธ๋ฆฌ๋ | [ํ๋ณต ์ ์น์](https://www.acmicpc.net/problem/13164) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/208 | | ||
| 22์ฐจ์ | 2024.08.06 | ํด์ | [์์](https://school.programmers.co.kr/learn/courses/30/lessons/42578) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/224 | | ||
| 23์ฐจ์ | 2024.08.10 | ํด์ | [๋ฒ ์คํธ์จ๋ฒ](https://school.programmers.co.kr/learn/courses/30/lessons/42579) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/227 | | ||
| 24์ฐจ์ | 2024.08.17 | BFS | [์๊ธฐ์์ด](https://www.acmicpc.net/problem/16236) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/233 | | ||
| 25์ฐจ์ | 2024.08.17 | DFS | [์น๊ตฌ๋น](https://www.acmicpc.net/problem/16562) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/234 | | ||
| 26์ฐจ์ | 2024.08.24 | ๊ทธ๋ฆฌ๋ | [์ ์ ์ฌ์](https://www.acmicpc.net/problem/1946) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/237 | | ||
| 27์ฐจ์ | 2024.08.27 | DFS | [ํธ๋ฆฌ์ ์ง๋ฆ](https://www.acmicpc.net/problem/1967) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/240 | | ||
| 28์ฐจ์ | 2024.09.04 | ๋ฒจ๋งํฌ๋ | [ํ์๋จธ์ ](https://www.acmicpc.net/problem/11657) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/244 | | ||
| 29์ฐจ์ | 2024.09.06 | ๊ตฌํ | [ํฑ๋๋ฐํด](https://www.acmicpc.net/problem/14891) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/245 | | ||
| 30์ฐจ์ | 2024.09.27 | ์ํ | [Fly me to the Alpha Centauri](https://www.acmicpc.net/problem/1011) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/248 | | ||
| 31์ฐจ์ | 2024.10.05 | ์ ๋ ฌ | [์ ๊ธ๊ธฐ](https://www.acmicpc.net/problem/2170) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/249 | | ||
| 32์ฐจ์ | 2024.10.14 | ์ด๋ถ ํ์ | [๊ธฐํ ๋ ์จ](https://www.acmicpc.net/problem/2343) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/252 | | ||
| 33์ฐจ์ | 2024.11.08 | ๋ฐฑํธ๋ํน | [๋ณ์ ๊ฑฐ๋ฆฌ ์ต์ํ](https://www.codetree.ai/training-field/frequent-problems/problems/min-of-hospital-distance/submissions?page=11&pageSize=5) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/253 | | ||
| 34์ฐจ์ | 2024.11.19 | ๋์ ํฉ | [๊ฐ๋ฅ๋ฒ๋ ](https://www.acmicpc.net/problem/3020) | | ||
| ์ฐจ์ | ๋ ์ง | ๋ฌธ์ ์ ํ | ๋งํฌ | ํ์ด | | ||
| :----: | :--------: | :-------: | :-------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------: | | ||
| 1์ฐจ์ | 2024.03.05 | ํ | [ํ๋ก์ธ์ค](https://school.programmers.co.kr/learn/courses/30/lessons/42587) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/151 | | ||
| 2์ฐจ์ | 2024.03.07 | ํ | [๋ค๋ฆฌ๋ฅผ ์ง๋๋ ํธ๋ญ](https://school.programmers.co.kr/learn/courses/30/lessons/42583) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/153 | | ||
| 3์ฐจ์ | 2024.03.10 | ํ | [N๋ฒ์งธ ํฐ ์](https://www.acmicpc.net/problem/2075) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/156 | | ||
| 4์ฐจ์ | 2024.03.13 | ํ | [๋ฌธ์ ์ง](https://www.acmicpc.net/problem/1766) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/158 | | ||
| 5์ฐจ์ | 2024.03.16 | ๊ตฌํ | [์์ธํธ์ค ๋ฌธ์ ](https://www.acmicpc.net/problem/1158) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/161 | | ||
| 6์ฐจ์ | 2024.03.19 | ์คํ | [์คํฐ์](https://www.acmicpc.net/problem/17298) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/164 | | ||
| 7์ฐจ์ | 2024.03.22 | DP | [1,2,3 ๋ํ๊ธฐ](https://www.acmicpc.net/problem/9095) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/166 | | ||
| 8์ฐจ์ | 2024.03.16 | DP | [์ฌ์ด ๊ณ๋จ ์](https://www.acmicpc.net/problem/10844) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/170 | | ||
| 9์ฐจ์ | 2024.03.22 | DP | [RGB๊ฑฐ๋ฆฌ 2](https://www.acmicpc.net/problem/17404) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/172 | | ||
| 10์ฐจ์ | 2024.04.03 | BFS | [์จ๋ฐ๊ผญ์ง 4](https://www.acmicpc.net/problem/13913) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/177 | | ||
| 11์ฐจ์ | 2024.04.07 | ๊ตฌํ | [์ฌํ ๊ฒ์](https://www.acmicpc.net/problem/9095) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/178 | | ||
| 12์ฐจ์ | 2024.04.09 | DFS | [ABCDE](https://www.acmicpc.net/problem/13023) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/180 | | ||
| 13์ฐจ์ | 2024.05.06 | ์์ ํ์ | [๋ฆฌ๋ชจ์ปจ](https://www.acmicpc.net/problem/1107) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/181 | | ||
| 14์ฐจ์ | 2024.05.09 | DFS | [์นํจ๋ฐฐ๋ฌ](https://www.acmicpc.net/problem/15686) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/183 | | ||
| 15์ฐจ์ | 2024.05.14 | ๊ทธ๋ฆฌ๋ | [A์ B](https://www.acmicpc.net/problem/12904) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/188 | | ||
| 16์ฐจ์ | 2024.05.14 | BFS | [๋ฑ๊ณผ ์ฌ๋ค๋ฆฌ ๊ฒ์](https://www.acmicpc.net/problem/16928) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/191 | | ||
| 17์ฐจ์ | 2024.05.22 | BFS | [์ ๋ก์์ฝ](https://www.acmicpc.net/problem/10026) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/195 | | ||
| 18์ฐจ์ | 2024.05.26 | DFS | [๊ณ๋์ผ๋ก ๊ณ๋์น๊ธฐ](https://www.acmicpc.net/problem/16987) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/199 | | ||
| 19์ฐจ์ | 2024.05.31 | DP | [ํฉ๋ถํด](https://www.acmicpc.net/problem/2225) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/202 | | ||
| 20์ฐจ์ | 2024.06.03 | ๋ฐฑํธ๋ํน | [์คํํธ์ ๋งํฌ](https://www.acmicpc.net/problem/14889) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/206 | | ||
| 21์ฐจ์ | 2024.06.07 | ๊ทธ๋ฆฌ๋ | [ํ๋ณต ์ ์น์](https://www.acmicpc.net/problem/13164) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/208 | | ||
| 22์ฐจ์ | 2024.08.06 | ํด์ | [์์](https://school.programmers.co.kr/learn/courses/30/lessons/42578) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/224 | | ||
| 23์ฐจ์ | 2024.08.10 | ํด์ | [๋ฒ ์คํธ์จ๋ฒ](https://school.programmers.co.kr/learn/courses/30/lessons/42579) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/227 | | ||
| 24์ฐจ์ | 2024.08.17 | BFS | [์๊ธฐ์์ด](https://www.acmicpc.net/problem/16236) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/233 | | ||
| 25์ฐจ์ | 2024.08.17 | DFS | [์น๊ตฌ๋น](https://www.acmicpc.net/problem/16562) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/234 | | ||
| 26์ฐจ์ | 2024.08.24 | ๊ทธ๋ฆฌ๋ | [์ ์ ์ฌ์](https://www.acmicpc.net/problem/1946) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/237 | | ||
| 27์ฐจ์ | 2024.08.27 | DFS | [ํธ๋ฆฌ์ ์ง๋ฆ](https://www.acmicpc.net/problem/1967) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/240 | | ||
| 28์ฐจ์ | 2024.09.04 | ๋ฒจ๋งํฌ๋ | [ํ์๋จธ์ ](https://www.acmicpc.net/problem/11657) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/244 | | ||
| 29์ฐจ์ | 2024.09.06 | ๊ตฌํ | [ํฑ๋๋ฐํด](https://www.acmicpc.net/problem/14891) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/245 | | ||
| 30์ฐจ์ | 2024.09.27 | ์ํ | [Fly me to the Alpha Centauri](https://www.acmicpc.net/problem/1011) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/248 | | ||
| 31์ฐจ์ | 2024.10.05 | ์ ๋ ฌ | [์ ๊ธ๊ธฐ](https://www.acmicpc.net/problem/2170) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/249 | | ||
| 32์ฐจ์ | 2024.10.14 | ์ด๋ถ ํ์ | [๊ธฐํ ๋ ์จ](https://www.acmicpc.net/problem/2343) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/252 | | ||
| 33์ฐจ์ | 2024.11.08 | ๋ฐฑํธ๋ํน | [๋ณ์ ๊ฑฐ๋ฆฌ ์ต์ํ](https://www.codetree.ai/training-field/frequent-problems/problems/min-of-hospital-distance/submissions?page=11&pageSize=5) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/253 | | ||
| 34์ฐจ์ | 2024.11.19 | ๋์ ํฉ | [๊ฐ๋ฅ๋ฒ๋ ](https://www.acmicpc.net/problem/3020) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/256 | | ||
| 34์ฐจ์ | 2024.11.19 | ๋์ ํฉ | [์ ๊น์ค](https://www.acmicpc.net/problem/2565) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/258 | |