일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코딩테스트 고득점 Kit
- 리액트 훅
- 컴퓨터 네트워크
- 자바 공부
- 프로그래밍 언어론
- 데이터모델링과마이닝
- 자바
- useState
- NextJS
- codesandbox
- react firebase
- vanillaJS
- Java
- 자바스크립트
- 프로그래머스 완전탐색
- React JS
- 프로그래머스
- 리액트
- 디자인 패턴
- 장고
- JavaScript
- 백준
- 코딩테스트 고득점 Kit 완전탐색
- websocket
- react
- useEffect
- 프로그래머스 자바
- react hook
- 코틀린
- design pattern
Archives
- Today
- Total
목록dfs 자바 (1)
기록하는 개발자
[백준][JAVA] 11724 : 연결 요소의 개수
import java.io.*; import java.util.*; public class Main{ static int[][] adjacent= new int[1001][1001]; static boolean[] checked= new boolean[1001]; static int n,m; public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); n = s.nextInt(); m = s.nextInt(); for(int i = 0; i < m; i++) { int x = s.nextInt(); int y = s.nextInt(); adjacent[x][y] = adjacent[y][x] =..
Algorithm
2021. 7. 11. 15:57