-
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
15-H0ngJu #188
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.
์ ์ ๋ ์ด ๋ฌธ์ S -> T
๋ก ํ๋ ค๋ค๊ฐ gg ์น๊ณ ๋ ํผ๋ฐ์ค ๋ณด๊ณ T -> S
๋ก ํ์์ต๋๋ค..
์ฝํ ์ ๋์์ผ๋ฉด ํ๋ ธ์ ๊ฒ ๊ฐ๋ค์.....................
์ํ์ฃผ ์งฑ..........
import sys
def input(): return sys.stdin.readline().rstrip()
S = list(input())
T = list(input())
while len(T) > len(S):
if T[-1] == "A": T.pop()
else:
T.pop()
T = T[::-1]
if S == T: print(1)
else: print(0)
def solution(cur, target): | ||
if len(cur) == len(target): # len(cur) == len(target) | ||
if cur == target: | ||
return 1 | ||
else: return 0 | ||
|
||
elif len(cur) < len(target): # len(cur) < len(target) | ||
if target[-1] == "A": | ||
target.pop() | ||
return solution(cur, target) | ||
else: | ||
target.pop() | ||
target = target[::-1] | ||
return solution(cur, target) | ||
|
||
else: # len(cur) > len(target) | ||
return 0 | ||
|
||
print(solution(S, T)) |
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.
๊ทผ๋ฐ ์ด ๋ถ๋ถ ์ฌ๊ท๋ก ํ์ ์ด์ ๊ฐ ์์๊น์?
๋๊ฐ์ ๊ตฌํ์ด๋ฉด ํ์ด์ฌ์ ์ฌ๊ทํ๋๊ฒ ๋ฌด๊ฑฐ์์ while
๋ฌธ์ด ํจ์ฌ ๋นจ๋ผ์!!!
์ ๋ ๊ฒ recursionlimit ์ค์ ํด์ค ํ์๋ ์๊พธ์ ํํ
์จ๋ ์จ๋ .... ์ข์ ๋ฌธ์ ๋๋ฌด ๊ฐ์ฌํฉ๋๋ค์์
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.
์ฌ์ค ๋ณ๋ค๋ฅธ ์ด์ ๋ ์์ต๋๋ค.. ํํ
์ฒ์์ ํจ์ ์ค๊ณํ ๋ '์ฌ๊ท ์จ์ผ์ง~' ํด์ ์์ฑํ๋ค๋ณด๋ ์ ๋ ๊ฒ ๋ ๊ฒ๋๋ค์... ใ
.ใ
.ใ
.
ํ๊ท๋ ๋ง๋๋ก ์ฌ์ค ์ ์ฌ๊ท๋ก์ง์
while len(cur)<len(target)
์ผ๋ก ํด๋ฒ๋ฆฌ๋ฉด recursionlimit ์ค์ ์ํด๋ ๋์ด์ ๐ฅน๐ฅน
์ข์ ํผ๋๋ฐฑ ๊ฐ์ฌํ๋ฏ๋๋น ๐
@H0ngJu ํ์ฅฌ๋ฅด ์ด๊ฑฐ ํน์ https://discord.com/channels/1203381153764089958/1211331998010834945 ์ฌ๊ธฐ ๊ฐ์ธ์ ์ผ๋ก ์ ๋จธ๋ฆฌ ํ ์น๋ ๋ฌธ์ ์๋๋ฐ |
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 ์ฒ๋ผ ์์ด๋์ด๊ฐ ์ค์ํ ๊ฒ ๊ฐ์์..!
fun main() {
val br = BufferedReader(InputStreamReader(System.`in`))
val s = br.readLine()!!
val t = br.readLine()!!
println(if (sisT(s, t)) 1 else 0)
}
private fun sisT(s: String, t: String): Boolean {
var now = t
while (s.length < now.length) {
now = if (now.last() == 'B') {
now.substring(0, now.lastIndex).reversed()
} else {
now.substring(0, now.lastIndex)
}
}
return s == now
}
์ DFS๋ก ํ๋ ํ๋ฒ์ฉ ์ฌ๊ท ๋๋ฌธ์ ์๊ฐ์ด๊ณผ๊ฐ ๋จ๋๋ฐ ์ ๊ฐ ์๋ชป ํผ๊ฑฐ์ธ์ง ํ ๋๊ฐ ์๋๋ผ๊ตฌ์... ์ ๋ ๋ค๋ฅธ ๋ถ๋ค๊ณผ ๊ฐ์ ๋ฐฉ์์ผ๋ก ์ฌ๊ท๋ฅผ ์ฌ์ฉํ์ง ์๊ณ ํธ๋ ๋ฐฉ๋ฒ์ ์๊ฐํ์๋๋ฐ ์ฌ๊ท๋ก๋ ํ๋ฒ ํ์ด๋ด์ผ๊ฒ ๋ค์!! |
๐ ๋ฌธ์ ๋งํฌ
A์ B
โ๏ธ ์์๋ ์๊ฐ
2H
โจ ์๋ ์ฝ๋
๊ทธ๋ฆฌ๋ ์ฐ์ตํ๋ ค๊ณ ์ด ๋ฌธ์ ๋ฅผ ๊ณจ๋์ต๋๋ท ~!
๋ฌธ์ ์์ฝ
์๋์ ๊ท์น์ ๋ฐ๋ผ S๋ฅผ T๋ก ๋ง๋ค ์ ์์ผ๋ฉด 1์, ์์ผ๋ฉด 0์ ๋ฐํํ๋ผ@!
๊ท์น 1. ๋ฌธ์์ด ๋ค์ A๋ฅผ ์ถ๊ฐํ๋ค.
๊ท์น 2. ๋ฌธ์์ด์ ๋ค์ง๊ณ ๋ค์ B๋ฅผ ์ถ๊ฐํ๋ค.
์ฒ์์๋ ๋ฌธ์ ์กฐ๊ฑด๋๋ก S๋ฅผ T๋ก ๋ง๋ค๋ ค๊ณ ์ ๊ทผ์ ํ์ต๋๋ค.
๊ทผ๋ฐ, ๋ฌธ์ ์์ ์ ์ํ ํ ์คํธ ์ผ์ด์ค๋ง ๋ณด์๋,
S๋ฅผ T๋ก ๋ง๋ค๊ธฐ ์ํ ์กฐ๊ฑด๊ณผ ๋ก์ง์ ์ฐพ๋๊ฒ ์ง์ง ๋ง๋ง์น ์์์ต๋๋ค..
๊พธ์ญ๊พธ์ญ ๊ตฌํํ๋ค๋ ์๊ฐ์ผ๋ก ์ฝ๋๋ฅผ ์์ฑํด๋ณด์์ง๋ง,
์ฅ๋ ฌํ ์ ์ฌํ์ต๋๋ค... ๐ชฆ๐ชฆ
์ฌ์ค ์๋์ ์ฝ๋๋ฅผ ์์ฑํ ๋๋ ์ด๋ค ๋ก์ง์ด ๋ฌธ์ ์ธ์ง ํ์ ์ด ์๋ผ์ ๊ทธ๋ฅ ๋ ํผ๋ฐ์ค๋ฅผ ์ฐธ๊ณ ํ์ต๋๋ค..
ํญ์ PR ์์ฑํ ๋ ์ฏค ๋๋ฉด ์ ๋ต์ด ์๋์๋์ง, ์ด๋ค ๋ก์ง์ด ํ๋ ธ๋์ง ๋์ ๋ณด์ด๋๊ฑธ๊น์ .. ใ ใ ๋๋๊ธฐ ์ฝ๋
์ผ๋จ ์ฐพ์๋ณธ ๋ ํผ๋ฐ์ค์์ ์๋์ ํํธ๋ฅผ ์ป์์ต๋๋ค.
'S์์ T๋ฅผ ์ถ์ ํ๋ ๊ฒ๋ณด๋ค, T์์ S๋ฅผ ์ญ์ถ์ ํ๋๊ฒ ๋ ํจ์จ์ ์ด๋ค!'
๊ทธ๋ ๊ฒ ํด์ ์์ฑ๋ ์ต์ข ์๋ ์ฝ๋๋ ์๋์ ๊ฐ์ต๋๋น
.
.
.
๊ทธ๋ฐ๋ฐ ๊ณ์ํด์ ๋ฐํ์์๋ฌ(RecursionError) ๊ฐ ๋ฐ์ํ๋๋ผ๊ณ ์ ...
ํน์ ๊ณ์ํด์ ์ฌ๊ท๋๋ ์ผ์ด์ค๊ฐ ์๋ ์ถ์ด์ ์ง๋ฌธ๊ฒ์ํ ์์๋ค๋ ๋ค ๋๋ ค๋ดค์ผ๋ .. ํด๊ฒฐ์ ๋ชปํ์ต๋๋ค
๊ทธ๋ฌ๋ค๊ฐ
๋๋ฐฉ์ ์๋ @9kyo-hwang ๋์์ผ๋ก ..
recursion limit์ ๋๋ ธ๋๋ .. ํต๊ณผ๊ฐ ๋์์ต๋๋ค ... ๐ฅน๐ฅน
ํ ์์ ์ ๋ชป ํ์๋ ๊ทธ๋ฆฌ๋ ๋ฌธ์ ๋ค๋ ๋์ฅ๊นจ๊ธฐ ๊ฐ๋๋ท ๐๐๐๐๐
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
ํ์ด์ฌ recursion error๋ sys.setrecursionlimit(106)๋ก ํด๊ฒฐํ๊ธฐ ..
์ด๊ฑฐ ํด๊ฒฐํ๋๋ฐ ํ ํ์๊ฐ์ ์ณ๋ค ๋ณธ ๊ฒ ๊ฐ๋ค์ ๐ซ