-
Notifications
You must be signed in to change notification settings - Fork 1
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
14-alstjr7437 #48
14-alstjr7437 #48
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.
1๋
์ ์ ๋ง์ด ์คํจํ ํ์ ๋ฐ๊ฒฌ..
ํ์์ผ๋ ์ฑ์ฅํ๊ฑธ๊น์..?ใ ใ
์ ๋ ์ ์ฒด์ ์ผ๋ก ๋ค๋ฅด๊ฒ ํ์๋ค์.
- ์ ๋ ฅ ๋ฐ์ ๋ ๊ฐ์ฅ ๋ฎ์ ๋ , ๊ฐ์ฅ ๋์ ๋ ์ ์ ์ฅ
- ํด๋น ๋ฒ์ ๋
๊ณ ๋ฅด๋ฉด์ ์๊ฐ ์ฒดํฌ
2-1. ๊ธฐ์ค์ด ๋ ๋ณด๋ค ํฌ๋ฉด ๋ ํ๊ธฐ
2-2. ๊ธฐ์ค์ด ๋ ๋ณด๋ค ์์ผ๋ฉด ๋ ์๊ธฐ
2-3. ์๊ฐ ๋ฐํ(์ธ๋ฒคํ ๋ฆฌ๊ฐ ์์๋ฉด ๋ถ๊ฐ๋ฅํ๋ ๋ฌดํ ๋ฐํ) - 2๋ฒ์ ๋ฐํ๋ ์๊ฐ์ ์ต์๊ฐ, ๋ ๋์ด ์ถ๋ ฅ!
const val INF = Int.MAX_VALUE
fun main() {
val br = BufferedReader(InputStreamReader(System.`in`))
val (n, m, b) = br.readLine().split(" ").map { it.toInt() }
val ground = Array(n) { Array(m) { 0 } }
var maxGround = 0
var minGround = 256
// ์
๋ ฅ๋ฐ์ ๋ ์ต์ ์ต๊ณ ๋
๋์ด ์ ์ฅ
for (i in 0 until n) {
val line = br.readLine().split(" ").map { it.toInt() }
for (j in 0 until m) {
ground[i][j] = line[j]
minGround = min(minGround, line[j])
maxGround = max(maxGround, line[j])
}
}
var minTime = INF
var answerCondition = -1
// ๊ฐ์ฅ ๋ฎ์ ๋
๋ถํฐ ๋์ ๋
๊น์ง ๋ฐ๋ณต
for (condition in minGround..maxGround) {
val time = program(n, m, ground, condition, b)
// ์๊ฐ์ด ๋๊ฐ์ผ๋ฉด ๋ ๋์ ๋
์ผ๋ก ๊ณ ๋ฅด๊ธฐ
if (minTime >= time) {
minTime = time
answerCondition = condition
}
}
println("$minTime $answerCondition")
}
// ๋
๊ณ ๋ฅด๊ธฐ ์์
private fun program(n: Int, m: Int, ground: Array<Array<Int>>, condition: Int, b: Int): Int {
var time = 0
var invent = b
for (i in 0 until n) {
for (j in 0 until m) {
// ๊ธฐ์ค ๋
๋ณด๋ค ํฌ๋ฉด ๋
ํ๊ธฐ
if (ground[i][j] > condition) {
val diff = ground[i][j] - condition
time += diff * 2
invent += diff
continue
}
// ๊ธฐ์ค ๋
๋ณด๋ค ์์ผ๋ฉด ๋
์๊ธฐ
if (ground[i][j] < condition) {
val diff = condition - ground[i][j]
time += diff
invent -= diff
}
}
}
// ์ธ๋ฒคํ ๋ฆฌ๋ณด๋ค ๋ง์ด ์ผ์ผ๋ฉด ๋ถ๊ฐ๋ฅํ๋๊น ๋ฌดํ์ ๋ฐํ
if (invent < 0) {
return INF
}
// ๊ทธ๋ ์ง ์์ผ๋ฉด ๊ฐ๋ฅํ๋๊น ์๊ฐ ๋ฐํ
return time
}
answer = int(1e9) | ||
idx = 0 | ||
|
||
for floor in range(257): |
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.
0~ 256 ๋ฒ์๋ฅผ ๊ฒ์ฌํ๋๊ตฐ์!
์ ๋ ์
๋ ฅ ๋ฐ์ ๋ ์ต์, ์ต๊ณ ๋
๋์ด๋ฅผ ์ ์ฅํด ๋จ๋ค๊ฐ ์ฌ์ฉํฉ๋๋ค!
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.
import sys
input = sys.stdin.readline
N,M,B = map(int, input().split())
ground = []
for _ in range(N):
ground.extend(map(int, input().split()))
time = [0 for _ in range(257)]
level = 0
for g in range(257):
block = B
for i in ground :
if i <= g :
time[g] += g-i
block -= g-i
else :
time[g] += 2* (i-g)
block += i-g
if block>=0 and time[g] <= time[level] :
level = g
print (time[level],level)
๊ฒฐ๊ตญ pypy3 ์จ์ผ ํ๋ค์.. ๊ทธ๋ฆฌ๊ณ ์ ๋ ์ด์ฐจ์ ๋ฐฐ์ด์ ํ๋์ ๋ฐฐ์ด๋ก ๋ง๋ค์ด์ ์ํํ๊ฒ ๋ง๋ค์์ต๋๋ค.
๐ ๋ฌธ์ ๋งํฌ
๋ง์ธํฌ๋ํํธ
โ๏ธ ์์๋ ์๊ฐ
50๋ถ(30๋ถ ์ง๋ณด๋ค๊ฐ ์์ด๋์ด๋ฅผ ์ธํฐ๋ท์ ์ฐธ๊ณ ํจ..)
์ฐ์ ๋ธ๋ฃจํธํฌ์ค๊ธธ๋ ๋ธ๋ญ์ ๋ค ์ถ๊ฐํ๊ณ ๊ทธ ๋ธ๋ญ์ ์ ์ผ ๋ง์ ์ธต์๋ฅผ ๊ตฌํ๊ณ ๊ทธ ์ธต์๋ฅผ ํ ๋๋ก ๊ณ์ฐํด์ ์๊ฐ์ด์ ์ธต์๋ฅผ ๊ณ์ฐํ๋ ค๊ณ ํ์ง๋ง
๊ตฌํ๋ถ๋ถ์์ ๊ณ์ ๋ญ๊ฐ ์๋ ๊ฒ ๊ฐ์์ ๊ฒฐ๊ตญ ์ธํฐ๋ท ์ฐธ๊ณ ๋ฅผ ํ๋ค..
๐ก ์ฐธ๊ณ ํ ์์ด๋์ด
์์ ๊ฐ์ด ๋ธ๋ฃจํธํฌ์ค์ ์์ ํ์ ๊ธฐ๋ฒ์ผ๋ก ๊ทธ๋ฅ 256์ธต๊น์ง์ ๋ชจ๋ ์ธต์ ์ดํด๋ณด๋ ๋ฐฉ๋ฒ์ด์๋ค...
โจ ์๋ ์ฝ๋
๊ทธ๋์ ๊ทธ๋ฅ ์์ ๊ฐ์ 64๊น์ง ์์ผ๋ฉด
์์ ๊ฐ์ด ์์๋ก ๋ณด๋ฉด ์ ๋ชจ๋ฅด๊ฒ ์ง๋ง.. ์๋ ์ฌ์ง์ ๋ณด๋ฉด ์กฐ๊ธ ๋์ดํด๊ฐ ๊ฐ๊ฒ๋๋ค!
(๊ธ๋ก๋ ์ ์๋์ ๊ทธ๋ฆฌ๋ฉด์ ํ๋๊ฑฐ์ ์ฌ์ค)๐ป ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์์ ๊ฐ์ด ์ฝ๋๋ฅผ ์ง๊ณ ์ ์ถ์ ํ๋๋ฐ ๊ณ์ ์๊ฐ์ด๊ณผ์ ๋งํ์
์ฒ์์๋ sys๋ฅผ ์จ์ input์ ๋ฐ๊ฟ์คฌ๋ค ์ ๋งํ๋ฉด ๊ทธ ๋ถ๋ถ์ ํด๊ฒฐ์ด ๋์ด์
๊ทผ๋ฐ ๊ทธ๋ถ๋ถ์ผ๋ก๋ ์๋๊ณ ์๊ฐ์ด๊ณผ๊ฐ ๋ ์ ํด๊ฒฐ์ด ์๋๊ธธ๋ ์ธํฐ๋ท์ ๊ฒ์์ ํด๋ณด๋
python์ผ๋ก ์ํ๊ณ pypy๋ก ํ๋๊น ํต๊ณผ๋๋ค..
๊ทธ๋ฆฌ๊ณ ๋ค๋ฅธ ์ฌ๋๋ค์ด if์ elif๋ฅผ ์ฌ์ฉํ๋๊ฑธ if์ else๋ก ๋ฐ๊พธ๋๊ฑฐ๋ก ํด๊ฒฐ์ด ๋๋ค๊ณ ํด์ ์๊ฐ์ ๋น๊ตํด๋ดค๋ค.
if์ elif else์ ์๊ฐ ์ฐจ์ด์ ๊ดํด์ ์์ธํ ๋ถ๋ถ์ stackoverflow์ ํตํด ์ดํดํ์ต๋๋ค!!