-
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
12-InSange #46
12-InSange #46
Conversation
# Conflicts: # InSange/README.md
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.
first ๊ฐ ๊ธฐ์ค์ผ๋ก ์ ๋ ฌํ ๋ค second ๊ฐ์ผ๋ก ๊ฒน์น๋์ง ์๊ฒน์น๋์ง ์ฌ๋ถ๋ฅผ ๊ณ์ฐํ๊ณ ๊ทธ ๊ฐ์ 1์ฐจ์ DP ๋ก ์ฐ์ฐํ๋๊ตฐ์.. ์ด๋ ๊ฒ๋ ๊ฐ๋ฅํ๋ค์..
์ ๋จ์ํ๊ฒ 2์ฐจ์ DP๋ก ๊ณ์ฐ ํ์ต๋๋ค! dp[x][y]๋ x, y ๊ฐ๋ณด๋ค ์์ ์ ๊น์ค๋ค์ ๊ฐ์๊ฐ ๋๊ณ ๊ทธ๊ฑธ ํ๋์ฉ ๊ฐฑ์ ํด๋๊ฐ๋ ์์ผ๋ก ํ์์ต๋๋ค!
ํนํ ๊ฒน์น๋ ๊ฒฝ์ฐ๋ฅผ ์ฐ์ฐํ๊ธฐ๊ฐ ์ด๋ ค์ pair<pair<bool, bool>, int> ๋ก dp ๋ฐฐ์ด์ ์ ์ธํด ํ์์ต๋๋ค!
#include <iostream>
#define MP(a, b, x) make_pair(make_pair(a, b), x)
#define VALUE(x) x.second
#define GET_X(x) x.first.first
#define GET_Y(x) x.first.second
using namespace std;
typedef pair<pair<bool, bool>, int> bbi;
int arr[510][510] = {0, };
bbi dp[510][510];
int main() {
int n, mx = 0, my = 0; cin >> n;
for (int i = 0; i < n; i++) {
int x, y; cin >> x >> y;
mx = x > mx ? x : mx;
my = y > my ? y : my;
arr[x][y] = 1;
}
for (int i = 1; i <= mx; i++) {
for (int j = 1; j <= my; j++) {
if (i == 1)
dp[1][j] = MP(false, arr[1][j], arr[1][j]);
else if (j == 1)
dp[i][1] = MP(arr[i][1], false, arr[i][1]);
else
dp[i][j] = MP(false, false, 0);
}
}
int sum;
for (sum = 2; sum <= (my + mx + 1); sum++) {
int j = max(sum - mx, 1);
while (sum - j >= 1) {
int x = sum - j;
int y = j++;
if (y > my) break;
bbi tx = dp[x][y - 1];
bbi ty = dp[x - 1][y];
if (!arr[x][y] || (GET_X(tx) || GET_Y(ty))) {
dp[x][y] = MP(GET_X(tx), GET_Y(ty), max(VALUE(tx), VALUE(ty)));
continue;
}
dp[x][y] = MP(1, 1, max(VALUE(tx), VALUE(ty)) + 1);
}
}
printf("%d\n", n - VALUE(dp[mx][my]));
}
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.
์ ๋ ์ฒ์์ A์ ๋ํด ์ค๋ฆ์ฐจ์ํด์ ๊ต์ฐจํ๋ ์ ๊น์ค์ ์ฐพ์๋๋ฐ ๊ต์ฐจํ๋ ๊ฑธ ์ฐพ๋๋ค๋๊ฒ ์ฝ์ง ์์์ด์. ๊ณ ๋ฏผํด๋ณด๋ค๊ฐ ๋ค๋ฅธ ํ์ด๋ฅผ ์ฐธ๊ณ ํ์ต๋๋ค. A์ ๋ํด ์ค๋ฆ์ฐจ์ ์ ๋ ฌํด์ B์์ ๊ต์ฐจํ์ง ์๋ ๊ฒฝ์ฐ๋ฅผ dp๋ก ๊ณ์ ๊ฐฑ์ ํ๋ฉด ๋๋๊ตฐ์. ๊ฒฐ๊ตญ ์ฐพ์์ผ ๋ ๊ฒ์ ๊ต์ฐจํ์ง ์๊ฒ ์์จ ์ ๊น์ค์ ์ต์์ด๋ฏ๋ก dp์ ์ต๋๋ฅผ ์ ์ฒด์์ ๋นผ๋ฉด ์ต์ ์ ๊น์ค์ด ๋์จ๋ค๋๊ฒ ์ ๊ธฐํ์ต๋๋ค.
n = int(input())
k = []
dp = [1]*n
for i in range(n):
a,b = map(int,input().split())
k.append([a,b])
k.sort()
for i in range(1,n):
for j in range(0,i):
if k[i][1] >= k[j][1]:
dp[i] = max(dp[i],dp[j]+1)
print(n-max(dp))
๊ฒฐ๊ตญ DP๋ก ํด๋ด์ จ๋ค์ ใ ใ ใ |
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.
์ผ๋ง์ ์ ๊ฐ์ฅ๊ธด ์ฆ๊ฐํ๋ ๋ถ๋ถ์์ด
๋ฌธ์ ๋ฅผ ํ์๋๋ฐ ์ด ๋ฌธ์ ์ ์๊ณ ๋ฆฌ์ฆ์ด ๋ณด์ฌ์ ๋๋์ต๋๋ค...์์์
์ ๊ธฐ์ค์ผ๋ก ์ ๋ ฌํํ ๋์
๋ง์ ์ด์ ๊ณ ๋ คํ์ฌ ๊ฐ์ฅ ๊ธด ์ฆ๊ฐ์์ด
์ ์ฐพ์์ ์ ๊ฑฐํด์ผํ๋์ ๊น์ค์=์ ์ฒด์ ๊น์ค์-๊ฐ์ฅ๊ธด์ฆ๊ฐ์์ด
์ด ๋๋ ๊ฒ์ด๊ตฐ์..! ํญ์ ๊น๋ํ ์ฝ๋๋ฅผ ๋ณด๋ฉฐ ๋ง์ด ๋ฐฐ์ฐ๊ณ ์์ต๋๋ค !
๐ ๋ฌธ์ ๋งํฌ
์ ๊น์ค
โ๏ธ ์์๋ ์๊ฐ
ํ๋ฃจ
โจ ์๋ ์ฝ๋
์ฒซ ๋ฒ์งธ ํ์ด
i
๋ฒ์งธ ์ ๊น์ค์ดi+1
๋ฒ๋ถํฐN
๋ฒ์งธ ์ค๊น์ง ๋น๊ต๋ฅผ ํ์์ ๋ ๊ฒน์น ๊ฒฝ์ฐ(CrossCheckํจ์๊ฐ true)cross
2์ฐจ์ ๋ฐฐ์ด์๋ค๊ฐi
๋ฒ์งธ ์์์ ๊ฒน์น๋ ์ธ๋ฑ์ค ๊ฐ์ ๋ฃ์ด์ค๋ค.i
๋ฒ์งธ์ ๊ฒน์น๋ ์ ๊น์ค์ ๊ฐ์์ ํด๋น ์ธ๋ฑ์ค ๋ฒํธi
๋ฅผ ๋ด๋ฆผ์ฐจ์ ์ฐ์ ์์ ํ์ ๋ฃ์ด์ค๋ค.pair<๊ฒน์น๋ ์ ๊น์ค์ ๊ฐ์, ์ธ๋ฑ์ค ๋ฒํธ
live
๋ถํ ๋ฐฐ์ด์ ์ ์ธํด์ฃผ์๋ค.๊ฒฐ๊ณผ๋?
๋๋๊ฒ๋ ์ง๋ฌธ ๊ฒ์ํ์ ํฌํจํ ๋ชจ๋ ํ ์คํธ ์ผ์ด์ค๋ ํต๊ณผ๊ฐ ๋์์๋ค.
๊ทธ๋ฌ๋.. ์ ์ถ๋งํ๋ฉด ํ๋ฆฌ๋ ๊ฒ์ ๋ณด์ ํ์ ์์ธ ์กฐ๊ฑด์ด ์์ ํฐ์ธ๋ฐ ๊ทธ๊ฒ์ ์ฐพ์ง ๋ชปํ๋ค..
๊ฒฐ๊ตญ ๋ธ๋ก๊ทธ ํธ์ถ
๋ ๋ฒ์งธ ํ์ด
๊ฒน์น๋ ์ ๊น์ค = ์ ์ฒด ์ ๊น์ค - ์ ๊ฒน์น๋ ์ ๊น์ค ์ด๋ค!!
์์ ํ์ด์์ ์์๋ ๋ชปํ๋ค.
line' ๋ฐฐ์ด์ ์ ์ฅ๋๋ฉฐ
first๋ ์์์ง์ ,
second`๋ ๋์ฐฉ์ง์ ์ด๋ค.first
์์์ง์ ์ ๊ธฐ์ค์ผ๋กsort
ํจ์๋ฅผ ํตํด ์ ๋ ฌํด์ค๋ค.dp
์ 1๋ก ์์ํ๋ค.i
๋ณด๋ค ์์ ์ ๊น์ค๋ค๊ณผ ๋น๊ตํด์second
์ ๊ฐ์ด ํ์ฌ์ ์ ๊น์ค๋ณด๋ค ์์ ๊ฒฝ์ฐ ๊ฒน์น๊ฒ ๋๋ค.i
์first
๋ ๋ด๋ฆผ ์ฐจ์์ด๊ธฐ์j
์first
๋ณด๋ค ํฌ๋ค! ๊ทธ๋ฌ๋second
์ ๊ฐ์ดj
๋ณด๋ค ์์ผ๋ฉด ์ ๊น์ค์ ๊ต์ฐจํ๊ฒ ๋๋ค.dp[j]
๋ฒ์งธ ์ค์i
์ ๊ฒน์น์ง ์๊ธฐ๋๋ฌธ์ 1์ ๋ํด์ค ๊ฐ์์dp[i]
์ ๋น๊ตํด์dp[i]
์ ๊ฐ์ ์ ๋ฐ์ดํธ ์์ผ์ค๋ค.j
๋i
๋ณด๋ค ์๊ธฐ ๋๋ฌธ์j
๊ฐ ์๊ฒน์น๋ ๊ฐ๋ค์i
์์๋ ์๊ฒน์ณ์ง๊ธฐ ๋๋ฌธ์ด๋ค.dp[i]
์ ๊ฐ๊ณผanswer
์ค ํฐ ๊ฐ์ ๊ฐ์ ธ์จ๋ค. ์ฐ๋ฆฌ๋ ์ต์ ์ ๊น์ค์ ์ฐพ์์ค์ผ ํ๊ธฐ ๋๋ฌธ์ ์ ์ฒด ์ ๊น์ค์์ ๋นผ๋ ค๋ฉด ๊ฐ์ฅ ํฐ max๊ฐ์ ์ฐพ์์ค์ผ ํ๋ค.ํ๊ธฐ
๋ฌธ์ ๋ฅผ ํ๋ฉด์ ์ด๊ฒ ๊ณจ๋ 5๋ผ๊ณ ๋ฌด์ํ ๋ง์ ์๊ฐ์ด ๋ค์๋ค..
์ค์ ๋ก ํ์ด ๋ฐฉ์์ ๋ ๋ ๋ชจ๋ ํ ์คํธ ์ผ์ด์ค๋ฅผ ํต๊ณผํ์์๋ ํ๋ ธ๋ค๊ณ ๋จ๊ธฐ์ ์์ธ๋ฅผ ์ฐพ๋๋ฐ ์๊ฐ์ด ๋งค์ฐ ์ค๋ ๊ฑธ๋ ธ๋ ๋ฌธ์ ์ด๋ค.
์ด๋ฌํ ์ ๊ทผ ๋ฐฉ์์ ๋ง์ ๋ฌธ์ ๋ฅผ ๊ฒช์ด ๋ด์ผ ๋ ๊ฒ ๊ฐ์๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฐธ๊ณ ๋ธ๋ก๊ทธ