Algorithms (98) 썸네일형 리스트형 [Python] SW Expert Academy 5188번 문제 (완전탐색, DFS) ---문제--- [파이썬 S/W 문제해결 구현]2일차 - 최소합 ---코드--- def dfs(y,x): global sub_result, result if result < sub_result: return if y == n-1 and x == n-1: result = sub_result return for d in range(2): y_tmp = y + dy[d] x_tmp = x + dx[d] if(y_tmp [Java] 백준 알고리즘 9095번 문제 (Dynamic Programming) --- 문제 --- --- 코드 --- import java.util.Scanner; public class Bj9095 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); int[] n = new int[t]; int max = 0; for(int i=0; i 이전 1 ··· 10 11 12 13 다음