본문 바로가기

전체 글169

백준 2606 import java.util.*; public class Main { public static boolean visited []; public static int map[][]; public static int n; public static int res=0; public static void main(String[] args) { Scanner sc=new Scanner(System.in); n=sc.nextInt(); //정점의 갯수 int m=sc.nextInt(); //간선의 갯수 map=new int[n+1][n+1]; visited=new boolean[n+1]; Arrays.fill(visited, false); //visited 배열을 모두 false로 초기화 for(int i=0; i 2021. 8. 10.
백준 1260 import java.util.*; public class Main { public static boolean visited []; public static int map[][]; public static int n; public static void main(String[] args) { Scanner sc=new Scanner(System.in); n=sc.nextInt(); //정점의 갯수 int m=sc.nextInt(); //간선의 갯수 int v=sc.nextInt(); //시작하는 정점 map=new int[n+1][n+1]; visited=new boolean[n+1]; Arrays.fill(visited, false); //visited 배열을 모두 false로 초기화 for(int i=.. 2021. 8. 9.
안드로이드 could not parse the android application module's gradle config. resolve gradle build issues and/or resync 안드로이드 스튜디오에서 파이어베이스 연결하려고 했는데 갑자기 could not parse the android application module's gradle config. resolve gradle build issues and/or resync 라는 경고가 뜨면서 연결이 안됐다. implementation을 compile이라 썼거나 데이터바인딩 설정 관련해서 문제가 있을때도 이 에러가 뜨는 모양이지만 난 해당 사항 없었다. 방금 막 만든 빈 프로젝트라 딱히 건드린 설정도 없었음... 해결법은 build.gradle-project에 들어가서 jcenter() 를 주석처리하고 sync 해주는 것이다. 이후 다시 연결해보니 성공적으로 진행됐다. 일단 연결만 끝나고 나면 jcenter()은 다시 살려줘도 .. 2021. 8. 9.
백준 9184 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); while(true) { int a=sc.nextInt(); int b=sc.nextInt(); int c=sc.nextInt(); if(a==-1&&b==-1&&c==-1) break; int res; try { res=w(a,b,c); }catch(Exception e){ res=1; } System.out.println("w("+a+", "+b+", "+c+") = "+res); } } static int dp[][][] = new int[51][51][51]; static int w(int a.. 2021. 8. 6.
백준 18870 import java.util.*; import java.lang.reflect.Array; public class Main { public static void main(String[] args) { //현재 좌표보다 작은 좌표들의 개수가 압축값이 되고, 좌표 값이 같은 여러 개의 좌표가 있어도 1개로 취급함 Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int arr []=new int [n]; int sorted_arr []=new int [n]; for(int i=0;i 2021. 8. 5.
백준 2108 import java.util.*; import java.lang.reflect.Array; import java.util.Collections; public class Main{ static public void main(String args[]){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int arr []=new int [n]; for(int i=0;i 2021. 8. 4.
반응형