-
Notifications
You must be signed in to change notification settings - Fork 2
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
57-tgyuuAn #197
57-tgyuuAn #197
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.
์ ์, ํ์, ์ค์ ์ํ๋ ์ค๋๋ง์ ๋ด์ ๊ฐ๋
์ก๋๋ผ ์ฌ๋ ค์ ๋ค์..
๋ฌธ์ ํธ๋ ์์ด๋์ด๊ฐ ์๊ฐ์ด ์๋์ ์ฝ๋๋ฅผ ๋ฐ๋ผ์น๋ฉด์ ์ดํดํด๋ณด์์ต๋๋ค..!
lateinit var br: BufferedReader
lateinit var inOrder: List<Int>
lateinit var postOrder: List<Int>
lateinit var positions: Array<Int>
fun main() {
br = BufferedReader(InputStreamReader(System.`in`))
val n = br.readLine().toInt()
inOrder = br.readLine().split(" ").map { it.toInt() }
postOrder = br.readLine().split(" ").map { it.toInt() }
positions = Array(n + 1) { 0 }
// ๊ฐ ๋
ธ๋๊ฐ ๋ช๋ฒ์งธ ์ธ๋ฑ์ค์ ์๋์ง ์ ์ฅ
inOrder.forEachIndexed { index, value ->
positions[value] = index
}
divideAndConquer(0, n - 1, 0, n - 1)
}
private fun divideAndConquer(inStart: Int, inEnd: Int, postStart: Int, postEnd: Int) {
if (inStart > inEnd || postStart > postEnd) return
// post ์ ๋ง์ง๋ง์ parent ์ด๋ค.
val inOrderParent = postOrder[postEnd]
// pre-order ๋ P-L-R ์
print("$inOrderParent ")
// ์ธ์ค๋์์ Parent ๊ฐ ์ด๋์๋์ง ์ฐพ๊ธฐ
val parentIndex = positions[inOrderParent]
// ์ผ์ชฝ
divideAndConquer(inStart, parentIndex - 1, postStart, postStart + (parentIndex - inStart) - 1)
// ์ค๋ฅธ์ชฝ
divideAndConquer(parentIndex + 1, inEnd, postStart + (parentIndex - inStart), postEnd - 1)
}
ํธ์ฌ๋ฆฌ.... ์ด๋ป๊ฒ ํ์ ์ํ๋ ๋ฃจํธ๊ฐ ์ ์ผ ๋ค๋ก ๊ฐ๊ณ ๊ทธ ๋ถ๋ถ์ ์ด์ฉํด์ ๋ฃจํธ ์ฐพ๊ณ |
in_order_root = post_order[post_end] | ||
print(in_order_root, end=" ") |
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.
์๋ก์ด ๋ฆฌ์คํธ๋ฅผ ๋ง๋ค์ด์ ํด์ผํ๋ ํ๋๋ฐ ์ด๋ ๊ฒ ๊ทธ๋ฅ ๋ฐ๋ก print๋ฅผ ํด์ ์ค์ ์ํ ์ถ๋ ฅ๋ ๊ฐ๋ฅํ๊ตฐ์ ใทใทใทใท
import sys | ||
|
||
sys.setrecursionlimit(10**6) | ||
def input(): return sys.stdin.readline().rstrip() |
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.
ํน์ ๊ทธ๋ฅ ๊ถ๊ธํ์ ์ธ๋ฐ
input = sys.stdin.readline
์ ์ฝ๋์ ํ๊ท๋์ ํจ์ํ์ ๋ค๋ฅธ์ ์ด ๋ฐ๋ก ์์๊น์??
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.
์ ์ค๋ค!!!!!!!!!!!!!!!!!!!!!!!!!!!!
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.
์๋ ๊ณผ์ ์ postorder๊ฐ ์ฃผ์ด์ง๋ฉด, preorder๋ฅผ ์ถ๋ ฅํ๋ ๋ฌธ์ ๋ฅผ ํผ ์ ์ด ์์ด์
๊ทธ ์ฝ๋๋ฅผ ์ข ์์ฉํด์ ์ ์ถํ๋๋ ๊ณ์ ๋ฉ๋ชจ๋ฆฌ ์ด๊ณผ๊ฐ ๋ฌ์ด๋ค..
๊ทธ๋์ ํ๊ท๋ PR์ด๋ ๋ค๋ฅธ ๋ ํผ๋ฐ์ค๋ฅผ ์ฐธ์กฐํ์ด์
hmmmmm.. ํธ๋ฆฌ ๋ฌธ์ ๋ ์์ต์ํด์ ๊ทธ๋ฐ๊ฐ ์ด๋ ต๋คํจ ๐ณ ๐ณ๐ณ๐ณ๐ณ๐ณ๐ณ
์๊ณ ํ์ จ์ด๋ค~!
def findPreorder(start, end, postStart, postEnd):
if postStart > postEnd:
return
root = postorder[postEnd]
print(root, end=" ")
rIdx = inorderIndex[root]
leftLength = rIdx - start
findPreorder(start, rIdx - 1, postStart, postStart + leftLength - 1)
findPreorder(rIdx + 1, end, postStart + leftLength, postEnd - 1)
๐ ๋ฌธ์ ๋งํฌ
ํธ๋ฆฌ์ ์ํ
โ๏ธ ์์๋ ์๊ฐ
2์๊ฐ
โจ ์๋ ์ฝ๋
์ธ์ค๋, ํ๋ฆฌ์ค๋, ํฌ์คํธ์ค๋ (Inorder, Preorder, Postorder)
์ด ๋ฌธ์ ์ชผ๊ผผ์ ์ด๋ ต๋ค.
๋ฌธ์ ๋ฅผ ํ๊ธฐ ์ ์, ์์ ๋งํฌ์์ ๋๋์ฒด ๋ฌธ์ ๋ฅผ ์ด๋ป๊ฒ ํ ์ ์์ ๊น ๊ณฐ๊ณฐํ 20๋ถ๋์ ์ณ๋ค๋ณด๊ธฐ๋ง ํ๋ค.
๊ฐ์๊ธฐ ๋ฌด์ธ๊ฐ ๋ฒ๋ฉ ๋ ์ฌ๋๋ค.
์๋์ ๊ฐ์ ํธ๋ฆฌ์ ํ์ ์ํ๋ก ํ์ํ๋ค๊ณ ํด๋ณด์.
(Left -> Right -> Root)
(1) -> (4) -> (6) -> (5) -> (3) -> (12) -> (16) -> (15) -> (7)
๊ทธ๋ฌ๋ฉด ๋ง์ง๋ง์ผ๋ก ํ์๋๋ ํญ์ ํญ์ ํธ๋ฆฌ์ ๋ฃจํธ๊ฐ ๋๋ค.
๊ทธ๋ฆฌ๊ณ ๊ทธ ๋ฃจํธ ๊ฐ (7) ์ด ์ ์ ์ํ ์์ ์ด๋์ ์์นํ๋ ์ง ์ฐพ์๋ณด๋,
(1) -> (3) -> (4) -> (5) -> (6) -> (7) -> (12) -> (15) -> (16)
์ ํํ ์ผ์ชฝ ํธ๋ฆฌ, ์ค๋ฅธ์ชฝ ํธ๋ฆฌ๋ฅผ ๊ฐ๋ฅด๊ณ ์๋ค๋ ๊ฒ์ ์๊ฒ ๋์๋ค.
ํธ์ฌ๋ฆฌ... ์ด ๊ท์น์ ์ฐพ์๋ง์ ๋ฌด์ธ๊ฐ ๋จธ๋ฆฌ ์์์ ์ค์ณ ์ง๋๊ฐ๋ค.
๋ฌด์์ธ์ง ์ฐพ์ผ์ จ๋์ ...?
๊ทธ๊ฒ์ ๋ฐ๋ก, ์๋์ ๊ฐ์ด ์ค๋ฅธ์ชฝ, ์ผ์ชฝ ํธ๋ฆฌ๋ฅผ ๋๋ ๋ค
์ ์ ์ํ, ํ์ ์ํ๋ฅผ ๋ถํ ํ๋ฉด ๋ ๋๊ฐ์ ๋ฌธ์ ๊ฐ ๋์จ๋ค๋ ๊ฒ...!
์ฆ ์ด ๋ฌธ์ ๋ ๋ถํ ์ ๋ณต ์ด์๋ฐ!!!!!!!!
์ด ๊ฒ์ ํ์ ํ ๋ค, ์ฒ์์๋ ์ค๋ฅธ์ชฝ ํธ๋ฆฌ, ์ผ์ชฝ ํธ๋ฆฌ๋ฅผ ๋๋๋ ๊ฒ์ ๊ทธ๋ฅ ๋ฆฌ์คํธ๋ฅผ ์๋ผ์ ๋ณต์ฌ ํ๋ ค๊ณ ํ๋ค.
ํ์ง๋ง ์ด๋ ๊ฒ ํ๋๊น ๋ฉ๋ชจ๋ฆฌ ์ด๊ณผ๊ฐ ๋๋ฒ๋ ธ๊ณ ,
๊ฒฐ๊ตญ ๋ฆฌ์คํธ๋ฅผ ์์ ๊ฑด๋ค์ง ์๊ณ , ์ธ๋ฑ์ค๋ก๋ง ํธ๋ฆฌ๋ฅผ ์๋ฅด๋๋ก ๋ก์ง์ ๋ฐ๊ฟจ๋ค.
์ด ๊ณผ์ ์์ ์๊ฐ์ ๋๋ฌด ๋ง์ด ์จ๋ฒ๋ ธ๋ค.
์จ๋ ๊ณ์ ์ํด๋ณด๋ฉด์ ๋๋ฒ๊น ํ๊ณ ์ด๋ป๊ฒ๋ ํ์๋ค...............
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ