Algorithm/📖Baekjoon138 # 15486 퇴사 2 # 문제 # 코드import kotlin.math.maxfun main() = with(System.`in`.bufferedReader()) { val n = readLine().toInt() val dp = IntArray(n + 1) repeat(n) { i -> val (t, p) = readLine().split(' ').map { it.toInt() } if (i + t # 풀이 처음에 작성한 코드는 아래 코드였다.import kotlin.math.maxfun main() = with(System.`in`.bufferedReader()) { val n = readLine().toInt() val counsel = Array(n + 1) { .. 2024. 9. 4. #17070 파이프 옮기기 1 문제 코드enum class Direction { HORIZONTAL, VERTICAL, DIAGONAL}fun main() = with(System.`in`.bufferedReader()) { val n = readLine().toInt() val house = Array(n) { IntArray(n) } var count = 0 repeat(n) { i -> house[i] = readLine().split(' ').map { it.toInt() }.toIntArray() } fun dfs(h: Int, v: Int, prevDir: Direction) { if (h >= n || v >= n || house[h][v] == 1) retu.. 2024. 8. 23. #1806 부분 합 문제 코드import kotlin.math.minfun main() = with(System.`in`.bufferedReader()) { val (n, s) = readLine().split(' ').map { it.toInt() } val seq = readLine().split(' ').map { it.toInt() } var min = Int.MAX_VALUE var start = 0 var end = 0 var sum = 0 while (end = s) { min = min(min, end - start) sum -= seq[start] start++ } else { i.. 2024. 8. 15. #1062 가르침 문제 코드package part2fun main() = with(System.`in`.bufferedReader()) { val fix = mutableSetOf('a', 'n', 't', 'i', 'c') val (n, k) = readLine().split(' ').map { it.toInt() } val words = mutableListOf() // 제공된 단어 리스트 val alphabet = BooleanArray(26) // 필요한 알파벳 체크(visited 역할) var max = 0 repeat(n) { val w = readLine().toCharArray().toSet().minus(fix) // 집합으로 변경 후 항상 필요한 알파벳 제외 .. 2024. 8. 11. #14888 연산자 끼워넣기 문제 코드const val MAX = 1_000_000_000const val MIN = -1_000_000_000fun main() = with(System.`in`.bufferedReader()) { val n = readLine().toInt() val num = readLine().split(' ').map { it.toInt() } val op = readLine().split(' ').map { it.toInt() }.toIntArray() var max = MIN var min = MAX fun dfs(count: Int, temp: Int, opIndex: Int) { val result = when (opIndex) { 0.. 2024. 8. 9. #1260 DFS와 BFS 문제 코드import java.util.*fun main() = with(System.`in`.bufferedReader()) { val (n, m, v) = readLine().split(' ').map { it.toInt() } val edges = Array>(n + 1) { mutableListOf() } val isVisited = Array(n + 1) { false } val q: Queue = LinkedList() repeat(m) { val (start, end) = readLine().split(' ').map { it.toInt() } edges[start].add(end) edges[end].add(start) .. 2024. 8. 8. 이전 1 2 3 4 ··· 23 다음