일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- react
- NextJS
- 프로그래머스
- 백준
- 디자인 패턴
- vanillaJS
- react firebase
- react hook
- 리액트 훅
- useEffect
- 코딩테스트 고득점 Kit 완전탐색
- 자바스크립트
- 컴퓨터 네트워크
- 자바 공부
- 코딩테스트 고득점 Kit
- 코틀린
- websocket
- 프로그래머스 자바
- 자바
- design pattern
- 장고
- useState
- React JS
- Java
- 프로그래밍 언어론
- 프로그래머스 완전탐색
- 리액트
- 데이터모델링과마이닝
- codesandbox
- JavaScript
Archives
- Today
- Total
목록백준 그래프 문제 추천 (1)
기록하는 개발자

import java.io.IOException; import java.util.Scanner; public class Main{ static int[][] adjacent; static boolean[][] checked; static int n,m,k,T,temp; static StringBuilder sb = new StringBuilder(); public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); T = s.nextInt();//테스트케이스 개수 for(int j=0; j= m) //좌표값이 잘못된 경우 return false; if(checked[row][col] == true ..
Algorithm
2021. 6. 7. 19:04