-
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
11-g0rnn #49
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 ์๋ค์..
40๋ถ ์ ๋ ๊ณ ๋ฏผํ๋ค๊ฐ ๊ท ํธ๋ ์ฝ๋ ๋ณด๊ณ ์์ ํด์ ๊ฒจ์ฐ ๋ง์์ต๋๋ค
์ผ๋จ ์ ๋ 2์ฐจ์ ๋ฐฐ์ด์ ์ธ ์๊ฐ์ ์ํ๊ณ ์์์ต๋๋ค.
์ฒ์์๋ ์ด๋ ๊ฒ ํ๋๋ฐ i-2
๋ฒ์งธ ๊ณผ๊ฑฐ๋ก๋ง ๋์๊ฐ๋ค๋ ๋ฌธ์ ๊ฐ ์์์ต๋๋ค.
for (int i = 2; i <= N; i++) {
dp[i] = dp[i - 1] + volume[i - 1];
if (dp[i] > M) {
dp[i] = dp[i - 2] - volume[i - 2] + volume[i - 1];
}
if (dp[i] < 0) {
dp[N] = -1;
break;
}
}
2์ฐจ์ ๋ฐฐ์ด์ ๋ง๋ค์ด์ผํ๋? ํ๊ณ ๊ณ์ ์๋ํ์ง๋ง ์คํจ...
๊ทธ๋ฐ๋ฐ ๋ฌธ์ ๋ฅผ ๋ค์ ๋ณด๋๊น M <= 1000
์ด์ ๋ ๋๋ผ๊ตฌ์
์ด์ ๋๋ฉด 2์ฐจ์ ๋ฐฐ์ด์ ๋ง๋ค์ด์ ๋ฌธ์ ๋ฅผ ํธ๋ ๊ฒ๋ ๊ด์ฐฎ์ ๋ฐฉ์์ด๊ฒ ๋ค ๋ผ๊ณ ์๊ฐํ์ต๋๋ค.
๋ 2์ฐจ์ ๋ฐฐ์ด์ bool
๊ฐ์ ์ ์ฅํด์ true
์ธ ๊ฒ ์ค์ ๊ฐ์ฅ ํฐ ์ธ๋ฑ์ค๋ฅผ ์ถ๋ ฅํ๋ฉด ์ ๋ต์ด ๋๋ค๋ ๊ฒ ๋ ๋ฐฐ์ ์ต๋๋ค.
์ ๋ dp๋ฅผ ํ ๋ bool ๊ฐ์ ๋ฃ์๊ฑด ์ฒ์์ธ ๊ฒ ๊ฐ๋ค์.
์ข์๋ฌธ์ ๊ฐ์ฌํฉ๋๋ค ~~
CPP CODE
#include <iostream>
#include <vector>
using namespace std;
int main() {
int N, S, M;
cin >> N >> S >> M;
vector<int> volume(N);
for (int i = 0; i < N; i++) {
cin >> volume[i];
}
vector<vector<bool>> dp(N + 1, vector<bool>(M + 1, false));
dp[0][S] = true;
for (int i = 1; i <= N; i++) {
for (int j = 0; j <= M; j++) {
if (dp[i - 1][j]) {
if (j + volume[i - 1] <= M) dp[i][j + volume[i - 1]] = true;
if (j - volume[i - 1] >= 0) dp[i][j - volume[i - 1]] = true;
}
}
}
int result = -1;
for (int j = M; j >= 0; j--) {
if (dp[N][j]) {
result = j;
break;
}
}
cout << result;
return 0;
}
|
||
for (int i = 2; i <= n; i++) { | ||
for (int j = 0; j <= m; j++) { | ||
if (!dp[i - 1][j]) continue; |
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๋ฌธ์ ๋ฅผ ํ๋ฉด์ boolean ๋ฐฐ์ด์ ์ด ๊ฑด ์ฒ์์ธ ๊ฒ ๊ฐ์ต๋๋ค. java codeimport java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int s = sc.nextInt();
int m = sc.nextInt();
int[] v = new int[n+1];
boolean[][] dp = new boolean[n+1][m+1];
dp[0][s] = true;
for (int i = 1; i <= n; i++) {
v[i] = sc.nextInt();
}
for (int i = 1; i <= n; i++) {
for (int j = 0; j <= m; j++) {
if (dp[i-1][j]) {
if(j + v[i] <= m) {
dp[i][j + v[i]] = true;
}
if(j - v[i] >= 0) {
dp[i][j - v[i]] = true;
}
}
}
}
int max = -1;
for (int j = 0; j <= m; j++) {
if (dp[n][j] == true) {
max = j;
}
}
System.out.println(max);
}
} |
๐ ๋ฌธ์ ๋งํฌ
๊ธฐํ๋ฆฌ์คํธ
โ๏ธ ์์๋ ์๊ฐ
40 - 50m
โจ ์๋ ์ฝ๋
๋ฌธ์ ๋ฅผ ์ฝ์ด๋ณด๋ฉด ๋๋๊ณ dp๋ฌธ์ ๋ผ๋ ๊ฒ์ ์๋ ค์ค๋๋ค. i๋ฒ์งธ ๋ณผ๋ฅจ์ ์กฐ์ ํ ๋๋ง๋ค ์ด์ ์ ๊ฐ์ ์์กด๋๊ณ ์ต์ ์ ํด๋ฅผ ๊ตฌํ๋ค๋ ๊ฒ์ผ๋ก๋ถํฐ dp๋ฌธ์ ์์ ์ ์ถํ ์ ์์ต๋๋ค.
์ ๋ ์ฒ์์ 1์ฐจ์ dp๋ฐฐ์ด์ ์ฌ์ฉํ์ฌ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๋ ค๊ณ ํ์ต๋๋ค. ์ด์ ์ ํ์ด์๋ ๋ฐฉ์๊ณผ ๋น์ทํ๊ฒ ์ ํ์์ ์ธ์ฐ๊ณ ์ต๋๊ฐ์ ๋ํ ์ ์ฝ๋ง ์ธ์ฐ๋ฉด ๋ ๊ฑฐ๋ผ ์๊ฐํ๊ฑฐ๋ ์. ํ์ง๋ง ์ด๋ ์ด์ ์ ๊ฐ๋ฅํ ๋ชจ๋ ๊ฒฝ์ฐ๋ฅผ ๊ณ ๋ คํ์ง ์๊ณ ์ด์ ์ ์ต๋๊ฐ๋ค๋ง ๊ณ ๋ คํ๊ธฐ ๋๋ฌธ์ ์๋์์ต๋๋ค. ๋ฐ๋ผ์ ์ด์ ์ํ์ ๋ชจ๋ ๋ณผ๋ฅจ ํฌ๊ธฐ๋ฅผ ๊ณ ๋ คํ๊ธฐ ์ํด 2์ฐจ์ ๋ฐฐ์ด์ ์ฌ์ฉํด์ผ ํฉ๋๋ค.
์ ๋ ฅ์ผ๋ก๋ถํฐ ๊ฐ๋ฅํ ๋ชจ๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๊ตฌํด๋ณด๋ฉด ์์ ๊ฐ์ต๋๋ค. ์๋๋ ๊ฒ๋ค์ 0๋ณด๋ค ์๊ฑฐ๋ m๋ณด๋ค ํฐ ๊ฐ๋ค์ด๊ณ ์ด๋ฅผ ์ง์ฐ๋ฉด
์ ๊ฐ์ด ๋จ๊ฒ ๋ฉ๋๋ค. ์ด๋ ๊ฒ ์์ ํธ๋ฆฌ์ฒ๋ผ ๊ฐ์ ๊ณ์ฐํ ํ ๊ฐ์ ๊ฐ๋ฅ์ฌ๋ถ๋ฅผ ์ ์ฅํ๊ณ ๊ทธ์ค ์ ์ผ ํฐ ๊ฐ์ ์ถ๋ ฅํ๋ฉด ๋ฉ๋๋ค. ๋ง์ฝ ๊น์ด๊ฐ ๊น์ด์ง๊ธฐ ์ ์ ๋ณผ๋ฅจ ๊ฐ์ด ๊ฐ๋ฅํ ๋ฒ์๋ฅผ ๋์ด์ ๋ค๋ฉด false๋ก ์ค์ ํ์ฌ ์ดํ๋ฅผ ๊ณ์ฐํ์ง ์์ต๋๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
dp๋ฅผ ํ ๋ ๊ฐ์ ์์กดํ์ฌ ๋ฐฐ์ด์ ์์ฑํ ์ ์๋ค๋ ๊ฑธ ์๊ฒ๋์๋ค.