일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- @Profile
- 브루트포스
- AuthenticationPrincipal
- OAuth2
- HttpMessageConverters
- JsonSerializer
- 스프링 부트
- Application Argument
- 스프링부트
- Spring Security
- Application Event
- 백준
- 리소스 서버
- 알고리즘
- WebApplication Type
- 외부설정
- application.properties
- 리소스핸들러
- 백트래킹
- 정적 리소스
- HATEOAS
- cors
- webjar
- 백기선
- rest api
- @ConfigurationProperties
- JPA
- 다익스트라
- Application Runner
- EnableAutoConfiguration
- Today
- Total
목록백준 (6)
아카이브
https://www.acmicpc.net/problem/18111 18111번: 마인크래프트 팀 레드시프트는 대회 준비를 하다가 지루해져서 샌드박스 게임인 ‘마인크래프트’를 켰다. 마인크래프트는 1 × 1 × 1(세로, 가로, 높이) 크기의 블록들로 이루어진 3차원 세계에서 자유롭게 www.acmicpc.net public class p18111 { static int N, M, B; static int[][] arr; static int MIN_HEIGHT = Integer.MAX_VALUE; static int MAX_HEIGHT = Integer.MIN_VALUE; public static void main(String[] args) throws IOException { BufferedReader..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashSet; import java.util.Set; import java.util.StringTokenizer; public class Main { static int[] dx = {-1, 1, 0, 0}; static int[] dy = {0, 0, -1, 1}; static int R, C; static char[][] map; static int max = Integer.MIN_VALUE; public static void main(String[] args) throws IOException { Buf..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.LinkedList; import java.util.Queue; import java.util.StringTokenizer; /* 숨바꼭질 3 */ public class Main { static int N, K; static boolean[] visit; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringToke..
1753번: 최단경로 www.acmicpc.net package boj; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; /* 백준 1753번 최단거리 문제 다익스트라 인접리스트 (2차원 배열로 풀면 메모리 초과) */ public class p1753 { static int V, E; static int K; static List[] lists; public static final int INF = Integer.MAX_VALUE; public static void main(String[] args) throws IOException { Buffere..
1238번: 파티 www.acmicpc.net package boj; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class p1238 { static int N, M, X; static List[] go, back; // 단방향이라 가는거 오는거 2개로 static int[] distSum; static boolean[] visit; static PriorityQueue priorityQueue; public static void main(String[] args) throws IOException { BufferedReader br ..
1389번: 케빈 베이컨의 6단계 법칙 www.acmicpc.net import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.StringTokenizer; public class Main { static int N, M; static ArrayList[] arrayLists; static int[] ans; static boolean[] visit; static int[] dist; public static void main(String[] args) throws IOException { BufferedReader b..