-
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
5 changed files
with
116 additions
and
38 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,17 @@ | ||
import sys | ||
|
||
def input() : return sys.stdin.readline().rstrip() | ||
|
||
N = int(input()) | ||
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,37 +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 | | ||
| ์ฐจ์ | ๋ ์ง | ๋ฌธ์ ์ ํ | ๋งํฌ | ํ์ด | | ||
| :----: | :--------: | :-------: | :-------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------: | | ||
| 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 | | ||
| 35์ฐจ์ | 2024.11.23 | DP | [์ ๊น์ค](https://www.acmicpc.net/problem/2565) | https://github.com/AlgoLeadMe/AlgoLeadMe-1/pull/258 | |
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,33 @@ | ||
import sys | ||
|
||
def input() : return sys.stdin.readline().rstrip() | ||
|
||
N, H = map(int, input().split()) | ||
# N <= 200000, H<= 500000 | ||
# ์์, ์ข ์ ์, ์์, ์ข ์ ์ ... | ||
up = [0 for _ in range(H+1)] | ||
down = [0 for _ in range(H+1)] | ||
min_broke = 1e9 | ||
broke_cnt = 0 | ||
|
||
for i in range(N): | ||
info_h = int(input()) | ||
if i % 2 == 0: | ||
down[info_h] += 1 | ||
else: | ||
up[info_h] += 1 | ||
|
||
for i in range(H-1, 0, -1): | ||
down[i] += down[i+1] | ||
up[i] += up[i+1] | ||
|
||
for i in range(1, H+1): | ||
broke = up[i] + down[H-i+1] | ||
if broke < min_broke: | ||
min_broke = broke | ||
broke_cnt = 1 | ||
elif broke == min_broke: | ||
broke_cnt += 1 | ||
|
||
print(min_broke, broke_cnt) | ||
|
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
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,28 @@ | ||
from collections import defaultdict | ||
import sys | ||
|
||
def input(): return sys.stdin.readline().rstrip() | ||
|
||
_input = input() | ||
|
||
def check(string, mid): | ||
temp = defaultdict(int) | ||
for start_idx in range(len(string)-mid+1): | ||
now = string[start_idx:start_idx+mid] | ||
temp[now] += 1 | ||
if temp[now] >=2 : return True | ||
return False | ||
|
||
answer = 0 | ||
left = 0 | ||
right = len(_input) | ||
while left+1 < right: | ||
mid = (left+right)//2 | ||
|
||
# ๋ง์ฝ ํด๋น ๋ฒํผ ํฌ๊ธฐ์ ๋ต์ด ์๋ค๋ฉด | ||
if check(_input, mid): | ||
answer = mid | ||
left = mid | ||
else: right = mid | ||
|
||
print(answer) |