-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
13-oesnuj #44
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ฒ์ ๋ฌธ์ ๋ฅผ ํ์์ ๋ ๋จ์ํ๊ฒ ๋ฐ๋ณต๋ฌธ์ ์ฌ์ฉํด์ ํ์๋๋ฐ ์ฝ๋๊ฐ ๊ฐ๊ฒฐํ๊ธด ํ์ง๋ง ์ค์๋์ฒ๋ผ dp๋ฅผ ์ฌ์ฉํ๋ ๊ฒ ํจ์ฌ ํจ์จ์ ์ด๊ฒ ๋๋ผ๊ตฌ์
๋ฐ๋ณต๋ฌธ ์ฝ๋
T = int(input()) # ํ
์คํธ ์ผ์ด์ค ์ ์
๋ ฅ
for _ in range(T):
k = int(input()) # ์ธต ์ ์
๋ ฅ
n = int(input()) # ํธ ์ ์
๋ ฅ
# 0์ธต์ ๊ฐ ํธ์์ ์๋ ์ฌ๋ ์๋ฅผ ์ด๊ธฐํ
people = [i for i in range(1, n+1)]
# k์ธต๊น์ง์ ๊ฐ ํธ์์ ์๋ ์ฌ๋ ์๋ฅผ ๊ณ์ฐ
for _ in range(k):
for i in range(1, n):
people[i] += people[i-1]
print(people[-1]) # k์ธต nํธ์ ์๋ ์ฌ๋ ์ ์ถ๋ ฅ
dp ์ฝ๋
def calc(k, n, dp):
if k == 0:
return n
if dp[k][n] != -1:
return dp[k][n] # ์ด๋ฏธ ๊ณ์ฐ๋ ๊ฐ์ด๋ฉด ๋ฐํ
sum_ = 0
for i in range(1, n + 1):
sum_ += calc(k - 1, i, dp)
dp[k][n] = sum_ # ๊ณ์ฐ๋ ๊ฐ์ ์ ์ฅ
return sum_
T = int(input()) # ํ
์คํธ ์ผ์ด์ค ์ ์
๋ ฅ
for _ in range(T):
k = int(input()) # ์ธต ์ ์
๋ ฅ
n = int(input()) # ํธ ์ ์
๋ ฅ
# DP ํ
์ด๋ธ ์ด๊ธฐํ
dp = [[-1] * (n + 1) for _ in range(k + 1)]
# ๊ฒฐ๊ณผ ๊ณ์ฐ ๋ฐ ์ถ๋ ฅ
result = calc(k, n, dp)
print(result)
์ ๋ ๊ฒฐ๊ตญ ์ค์๋์ด๋ ๊ฐ์ ๋ก์ง์ผ๋ก ํ์ด์ ๋ค๋ฅธ ๋ฐฉ์์ ์๊ฐํด๋ด์ง ๋ชปํ์ง๋ง... dp ์ฐ์ต์ผ๋ก ์ข์ ๋ฌธ์ ์๋ ๊ฒ ๊ฐ์์!! pr ์๊ณ ํ์ จ์ต๋๋ค
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ฌ์ค ์๊ฑด ๋ฐํ ์ ๋ฐฉ์์ด ๋ฑ ์ง๊ด์ ์ด๊ธด ํฉ๋๋ค :)
#include <stdio.h>
#include <memory.h>
int t, k, n;
int apartment[15][15];
int main()
{
scanf(" %d", &t);
while(t--)
{
scanf(" %d %d", &k, &n);
memset(apartment, 0, sizeof(apartment));
for(int number = 1; number <= n; ++number)
{
apartment[0][number] = number;
}
for(int floor = 1; floor <= k; ++floor)
{
for(int number = 1; number <= n; ++number)
{
apartment[floor][number]
= apartment[floor - 1][number] + apartment[floor][number - 1];
}
}
printf("%d\n", apartment[k][n]);
}
return 0;
}
๐ ๋ฌธ์ ๋งํฌ
๋ฐฑ์ค | ๋ถ๋ ํ์ฅ์ด ๋ ํ ์ผ
โ๏ธ ์์๋ ์๊ฐ
30๋ถ
โจ ์๋ ์ฝ๋
solved.ac class2์ ๋จ์ ๋ง์ง๋ง ๋ฌธ์ ์ธ๋ฐ DP๋ก ๋ถ๋ฅ๋์ด์๊ธธ๋ ๋ง๋ฌด๋ฆฌ ํ ๊ฒธ ํ์ด๋ดค์ต๋๋ค.
๋จผ์ ๋ฌธ์ ์ ์กฐ๊ฑด์ ์ฝ์ผ๋ ์น์ ํ๊ฒ ์ฌ๊ท๋ฅผ ์ฐ๋ผ๋ ๋งํ๋ ๊ฒ ๊ฐ์์ต๋๋ค.
k์ธต์ ๋ฐ๋ฅธ 1๋ถํฐ nํธ๊น์ง์ ์ฌ๋์์ ํฉ์ด๋ผ...
1๏ธโฃ ํ์ด 1 ์ฌ๊ท๋ง ์ด์ฉ
๊ทผ๋ฐ c++์ด๋ผ ๊ทธ๋ฐ์ง๋ ๋ชจ๋ฅด๊ฒ ์ง๋ง ์ฌ๊ท๋ง ์ผ๋๋ฐ๋ ํ๋ ธ์ต๋๋ค.
๋ชจ๋ ์ฌ๊ท ๋ฌธ์ ๊ฐ ๊ทธ๋ ๋ฏ ๋ฌธ์ ์ ์ ์ + ํ์ถ์กฐ๊ฑด์ ์ ๋๋ก ๋ง๋ค๋ฉด ๋ฉ๋๋ค.
๋ฌธ์ ์์
k์ธต nํธ์ ์ฌ๋์
๋k-1์ธต์ 1ํธ๋ถํฐ nํธ๊น์ง์ ์ฌ๋ ์์ ํฉ
์ด๋ผ๊ณ ํ์ต๋๋ค.Note
๋ฌธ์ ์ ์ ์ : k์ธต nํธ์ ์ฌ๋์ = k-1์ธต์ 1ํธ๋ถํฐ nํธ๊น์ง์ ์ฌ๋ ์์ ํฉ
ํ์ถ ์กฐ๊ฑด : 0์ธต์ผ ๊ฒฝ์ฐ ์ฌ๋์(n) ๋ฆฌํด
์ ๋๊ฐ์ง๋ฅผ ํ์ฉํด ์ฌ๊ทํจ์๋ฅผ ๋ง๋ค์ด์ค๋๋ค!!!
2๏ธโฃ ํ์ด2 ์ฌ๊ท + DP
DP๋ ๋์ผํ ๊ณ์ฐ์ ๋ฐ๋ณตํด์ผ ํ ๋, ์ด์ ์ ๊ณ์ฐํ ๊ฐ์ ๋ฉ๋ชจ๋ฆฌ์ ์ ์ฅํจ์ผ๋ก์จ ๋์ผํ ๊ณ์ฐ์ ๋ฐ๋ณต ์ํ์ ์ ๊ฑฐํ์ฌ ํ๋ก๊ทธ๋จ ์คํ ์๋๋ฅผ ๋น ๋ฅด๊ฒ ํ๋ ๊ธฐ์ ์ด๋ค.
์ด ๋ฌธ์ ์์๋ k, n์ ๋ฐ๋ฅธ ํจ์ํธ์ถ ๊ฒฐ๊ณผ๋ฅผ ๋ฉ๋ชจ๋ฆฌ์ ์ ์ฅํด๋์ด ์ฌ๊ท ํธ์ถ์์ ์ด๋ฏธ ํธ์ถ๋ ์ ์ด ์๋ k, n์ ๊ฐ์ ๋ํด์๋ ์ ์ฅ๋ ๊ฐ์ ๋ฐํํฉ๋๋ค!
[์ถ๊ฐ๋ ๋ถ๋ถ]
3๏ธโฃ ์๋ ์ฐจ์ด
์๊ฐ DP ํ์ด์ธ๋ฐ ์๊ฐ์ ๋ณด๋ ์ฐจ์ด๊ฐ ํ์คํ๋๋ค์
๋จ์ ์ฌ๊ท: ์๊ฐ๋ณต์ก๋ O(n^k)๋ก k์ n์ด ์ปค์ง์๋ก ๊ณ์ฐ๋์ด ๋ง์ด ์ฆ๊ฐํฉ๋๋ค.
์ฌ๊ท + DP: ์๊ฐ ๋ณต์ก๋ O(k * n^2)๋ก ์ค๋ณต๊ณ์ฐ์ ํผํ๋ฏ๋ก ์๊ฐ๋ณต์ก๋๊ฐ ํจ์ฌ ์ค์ด๋ญ๋๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
DPํ ์ด๋ธ์ ํ์ฉํ ๋ฉ๋ชจ์ ์ด์ ๋ฐฉ์์ผ๋ก ๋ ํจ์จ์ ์ผ๋ก ์ฌ๊ทํธ์ถ์ ํ๋ค!
๋ ๋ค๋ฅธ ํ์ด๋ก 0์ธต 1ํธ ๋ถํฐ ์์ํด์ ์ฆ๊ฐ์์ผฐ์๋์ ๊ท์น์ผ๋ก ์ ํ์์ ์ธ์ ํธ๋ ๋ฐฉ์๋ ์๋ ๊ฒ ๊ฐ์๋ฐ ๋ค๋ค ํ์ด๋ณด์ จ๋ค๋ฉด ์ด๋ป๊ฒ ํ์๋์ง ๊ถ๊ธํ๋ค์.