| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- greedy
- binary search
- 이분탐색
- oracle
- 러닝일지
- 백준
- 문제해결
- 프로그래머스
- Java
- 운동기록
- dfs
- db
- 문자열
- BOJ
- 건강
- DP
- math
- 투포인터
- 시뮬레이션
- BFS
- 알고리즘
- 코딩테스트
- 문제풀이
- MySQL
- SQL
- SWEA
- 자바
- priorityqueue
- 코테
- Today
- Total
목록dfs (3)
슈콩
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWT-lPB6dHUDFAVT SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n,l,result; static int[] score,cal; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new Inp..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15Khn6AN0CFAYD SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int max,result = 0; static char[] nums; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new Inp..
[문제]https://www.acmicpc.net/problem/1260 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n; static boolean[] visit; static boolean[][] connect; static StringBuilder sb; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); n = Inte..