-
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
29-alstjr7437 #210
29-alstjr7437 #210
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.
์ ๋ ์ด๋ถ ํ์ left
, right
์กฐ๊ฑด์ ์ด๋ป๊ฒ ์ค์ ํด์ผ ํ์ง?
mid
๊ฐ์ ์ด๋ป๊ฒ ์ก์์ผ ํ์ง? ์ ๋ํด ๊ณ ๋ฏผ์ด ๋ง์์ด์,
์ ๊ธฐ ๋์์๋ ๋งํฌ๋ก ๊ณต๋ถ๋ฅผ ํ์๋๋ค.
์ด์ ๊ฑฐ์ ๋ชจ๋ ์ด๋ถ ํ์ ๋ฌธ์ ์ ์๋์ ๊ฐ์ด ๊ตฌํํ๋ ๋ค ์ ์ ํ๋ฆฌ๋๋ผ๊ณ ์.
import sys
def input(): return sys.stdin.readline().rsrtip()
N, M = map(int, input().split())
trees = list(map(int,input().split()))
def check(mid, trees, target):
accumulate = 0
for tree in trees:
accumulate += max(0, tree-mid)
if accumulate >= target: return True
return False
left = 0
right= 1_000_000_001
answer = 0
while left+1 < right:
mid = (left + right)//2
if check(mid, trees, M):
answer = mid
right = mid
else: left = mid
print(answer)
๊ทธ ๊ฒฐ๊ณผ ์ํ๋ก ํ๊ธดํ์ต๋๋ค๋ง ์ด๊ฑฐ python3์ผ๋ก๋ ์ํ๋ฆฌ๋์?
์ข ๊น์์ผํ๋..
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.
ํ์ด์ฌ์ผ๋ก ๊ฐ์ํ์ผํ๋..
์ผ๋จ 1๋
๋ฐ ์ ์ ํ์๋ ๋ฌธ์ ๊ธดํ๋ฐ ๊ธฐ์ต์ ์๋ฌ๊ตฌ์ฉ
์ด๋ถ ํ์์ ๋ฐ๋ก ์บ์นํ์ต๋๋ค๋ง...
kotlin Int ๋ฉด ์ซ์๊ฐ ์ปค์ ์ค๋ฒํ๋ก๊ฐ ๋๋๋ผ๊ตฌ์. (์ด๊ฒ ์ค๋ฒํ๋ก๋ฉด ์๋ฌ๊ฐ ์๋๋ผ ๊ทธ๋ฅ ํ๋ ธ๋ค๊ณ ๋์ค๋๊ฒ ๋ฌธ์ ...)
๊ทธ๋๋ ๋ฌธ์ ์ ์ซ์ ๋ฒ์ ๋ณด๊ณ ์ค๋ฒํ๋ก ๋๊ฒ ๊ตฌ๋ ์์์ฐจ๋ ค์ Long ์ผ๋ก ๋ณ๊ฒฝํด ํ์์ต๋๋ค.
์ฌ๊ท๋ก ํ์์ด์.
import java.io.BufferedReader
import java.io.InputStreamReader
private lateinit var br: BufferedReader
private var max: Long = 0
fun main() {
br = BufferedReader(InputStreamReader(System.`in`))
val (n, m) = br.readLine().split(" ").map { it.toLong() }
val trees = br.readLine().split(" ").map { it.toLong() }
findMax(trees, 0, trees.max(), m)
println(max)
}
fun findMax(trees: List<Long>, start: Long, end: Long, target: Long) {
if (start > end) return
val mid = (start + end) / 2
val cuts: Long = trees.filter { it > mid }.sumOf { it - mid }
if (cuts == target) {
max = mid
return
}
if (cuts > target) {
max = mid
return findMax(trees, mid + 1, end, target)
}
return findMax(trees, start, mid - 1, target)
}
๊ทธ๋ฆฌ๊ณ ๋ฏผ์๋์ด ํธ์ ๋ฐฉ๋ฒ์ผ๋ก ํ ๋ฒ ๋ ํ์ด๋ดค์ต๋๋ค.
import java.io.BufferedReader
import java.io.InputStreamReader
private lateinit var br: BufferedReader
fun main() {
br = BufferedReader(InputStreamReader(System.`in`))
val (n, m) = br.readLine().split(" ").map { it.toLong() }
val trees = br.readLine().split(" ").map { it.toLong() }
println(findMax(trees, m).toInt())
}
fun findMax(trees: List<Long>, target: Long): Long {
var start = 0L
var end: Long = trees.max()
while (start <= end) {
val mid = (start + end) / 2
val cuts: Long = trees.filter { it > mid }.sumOf { it - mid }
if (cuts >= target) {
start = mid + 1
continue
}
end = mid - 1
}
return end
}
๊ฒฐ๊ตญ end ๋ target ์ ๋ง์กฑํ๋ ๊ฒ๋ค ์ค์ mid - 1 ๋ก ์ ์ ์์์ง๊ธฐ ๋๋ฌธ์ ์ต๋๊ฐ์ ๊ฐ๊น์์ง๋ค๋ ๊ฒ์ ์บ์นํ ํ์ด ๋ฐฉ๋ฒ์ด๊ตฐ์! ์ฌ๋ฐ๋ ๋ฌธ์ ์์ต๋๋ค. ๊ฐ์ฌํฉ๋๋ค.
๐ ๋ฌธ์ ๋งํฌ
๋๋ฌด์๋ฅด๊ธฐ
๋ฏธ๋ฆฌ๋ณด๊ธฐ ๋ฐฉ์ง
โ๏ธ ์์๋ ์๊ฐ
30๋ถ
โจ ์๋ ์ฝ๋
๋๊ฐ๋ด๋
(1 โค N โค 1,000,000, 1 โค M โค 2,000,000,000)
๋ผ์ ๊ทธ๋ฅ ํ๊ฒ ๋๋ฉด ์๊ฐ์ด๊ณผ๊ฐ ๋ ๊ฒ ๊ฐ์์ง๋ง
๊ทธ๋ฅ๋ ํ๋ฒ ํ์ด๋ดค์ต๋๋ค.
๊ทธ๋ฅ ์๋ฅด๋ ๋๋ฌด ๊ธธ์ด๋ฅผ 0๋ถํฐ ์์ํด์
์๋ผ์ ์ป์ ๊ธธ์ด ์ด ํฉ์ด ์ํ๋ ๋๋ฌด ๊ธธ์ด๋ณด๋ค ์์์ง๋ฉด break
ํ์ฌ์ ๊ฒฐ๊ณผ ๊ฐ์ ์ ํด์ฃผ๋ ๋ฐฉ์์ผ๋ก ํ์ต๋๋ค.
๋ค ๋๊ฐ๋ด๋ ์๊ฐ ์ด๊ณผ์ฃ ???
๋๋ฌด์ ๊ธธ์ด M์ด ์ฃผ์ด์ง๋ค. (1 โค N โค 1,000,000, 1 โค M โค 2,000,000,000)
์ธ๋ฐ ์์ ๋ฐฉ์์ ์ฌ์ฉํ๊ฒ ๋๋ฉด์๋ก ๋๋ฌด ๊ธธ์ด๊ฐ 0, 100, 2_000_000_000๊ฐ ์์ผ๋ฉด 0๋ถํฐ 20์ต๊น์ง ๊ณ์ํด์ ๋์์ผํ๋ ๊ฒฝ์ฐ๋ ์๊ธธ ์ ์์ต๋๋ค.(๊ทธ๋ด์ผ์ด ์์ง๋ง)
๊ทธ๋์ ์๊ฐํ ๋ถ๋ถ์ด ๋๋ฌด์ ์ดํฉ ๊ธธ์ด๋ ๋๊ฐ์ด ๊ตฌํ์ง๋ง
์๋ฅด๋ ๋๋ฌด ๊ธธ์ด์ ์ ์ ์ ์ด๋ถํ์์ผ๋ก ํ๋ฉด ์ด๋จ๊น ์์ต๋๋ค!!
(์ฌ์ค ์ฒ์์๋ ๋ญ ์ด๋ถํ์ํด์ผํ ์ง ์ ๊ฐ์ด ์์กํ์ต๋๋ค..)๊ทธ๋์ ์๊ณ ๋ฆฌ์ฆ์ผ๋ก
start = 1
end = max(tree)
๋ก ๋๋ฌด์ ์ต๋ ๊ฐ์ end๋ก ์ก๊ณ
mid๋ฅผ ์๋ฅด๋ ๋๋ฌด ๊ฐ์ผ๋ก ์ก์์ต๋๋ค.
๊ทธ๋ฆฌ๊ณ ์ ํ๋ฆฐ ๋ฐฉ์๊ณผ ๋๊ฐ์ด mid - ๊ฐ ๋๋ฌด์ ๊ฐ์ผ๋ก temp์๋ค๊ฐ ์๋ฅธ ๋๋ฌด์ ๊ฐ์ ๋ฃ์ด์ฃผ๊ณ
์๋ฅธ ๋๋ฌด์ ๊ฐ์ ๋น๊ตํ์ฌ
์ผ๋ก ์ด๋ถํ์์ ์งํํ์ฌ์ end๋ฅผ ์ถ๋ ฅํ๋ฉด ๊ฒฐ๊ณผ๊ฐ์ผ๋ก ๋์์ต๋๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ด๋ถ ํ์์ธ ๋ถ๋ถ์ ๋ฐ๋ก ์์์ง๋ง ์ด๋ป๊ฒ ์ด๋ถํ์์ ํด์ผํ ์ง๋ ์ ์๊ฐํด์ผ ํ์ต๋๋ค..
ํ๋ก๊ทธ๋๋จธ์ค ์ ๊ตญ์ฌ์ฌ ์ด ๋ฌธ์ ๋ฅผ ํ๋๋ ๋๊ฐ์ ๊ณ ๋ฏผ์ผ๋ก ์ด๋ถํ์์ mid๋ฅผ ๋ญ ์ก์์ผํ ์ง ๋ชฐ๋ผ์ ํ์ฐธ ํด๋งธ๋๋ฐ ๋ถ์กฑํ ๋ถ๋ถ์ด ๋ง๋ค๊ณ ์์ง ๋๊ผ์ต๋๋ค.