| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- 문자열
- 문제해결
- COS PRO
- dfs
- 투포인터
- 코테
- BOJ
- 자바
- 알고리즘
- 코딩테스트
- 건강
- 프로그래머스
- SWEA
- 문제풀이
- oracle
- DP
- math
- db
- binary search
- BFS
- 이분탐색
- Java
- 러닝일지
- SQL
- MySQL
- greedy
- priorityqueue
- 백준
- 시뮬레이션
- 운동기록
- Today
- Total
목록2025/12/07 (2)
슈콩
[문제]https://www.acmicpc.net/problem/17142 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n,m,result = Integer.MAX_VALUE; static int[][] lab,copy; static boolean[] select; static List virus; static int[] dr = {-1,1,0,0}; static int[] dc = {0,0,-1,1}; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(..
[문제]https://www.acmicpc.net/problem/17140 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n,m; static int[][] map; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int r = Integer.parseInt(st.nextToken()); int c = Integer.parse..