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
- 안드로이드
- android adapterview
- 자바 컬렉션
- 깊이우선탐색
- android fragment
- DFS
- 액티비티 ANR
- support fragment
- 자료구조
- 백준
- application not responding
- 안드로이드 AdapterView
- 안드로이드 파일
- 백준 알고리즘
- java
- BFS
- 소수 알고리즘
- 소수
- android support
- anr
- 안드로이드 DBMS
- db
- 컬렉션
- 안드로이드 ANR
- 알고리즘
- 너비우선탐색
- support 라이브러리
- SQLite와 Realm 차이점
- oracle
- Github
- Today
- 1
- Total
- 33,926
목록백준 알고리즘 (2)
밍의 기록들😉
문제 https://www.acmicpc.net/problem/2606 소스코드import java.util.Scanner; public class Virus { private static int v; public static void main(String[] args) { Scanner sc = new Scanner(System.in); v = sc.nextInt(); // node, vertex int e = sc.nextInt(); // edge sc.nextLine(); int[][] graph = new int[v][v]; int[] check = new int[v]; for(int i=0; i
자료구조, 알고리즘/문제풀이
2018. 9. 5. 23:13