Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백트래킹
- TDD
- 운영체제
- LEVEL2
- java
- Spring
- 알고리즘
- 자료구조
- OS
- 프로그래머스
- 백준
- 모던자바
- DFS
- BFS
- 자바
- Java8
- algorithm
- 코틀린
- 스프링
- backtracking
- Brute-force
- programmers
- back-end
- 그래프
- baekjoon
- 프로젝트
- lambda
- 네트워크
- DP
- kotlin
Archives
- Today
- Total
목록이분매칭 (1)
요깨비's LAB
[백준, 그래프 이론, Java] P.2188 축사 배정(이분 매칭)
import java.util.ArrayList; import java.util.List; import java.util.Scanner; class Cow { int id; List preferences; public Cow(int id) { this.id = id; this.preferences = new ArrayList(); } } public class Main { public static int[] barns; public static boolean[] isProccesed; public static List cows; public static int N; public static int M; public static void main(String[] args) { Scanner scr = ne..
알고리즘(Java)/그래프 이론
2021. 4. 20. 12:56