Problem Solving44 SWEA- 1233 계산기 2 STACK이용 연산자마다 우선순위를 부여해주어야함. 내 연산순위> 스택의 peek연산순위 = push. 내 연산순위=0 && c-'0' 2021. 2. 7. SWEA -1861 정사각형 방 import java.io.FileInputStream; import java.io.FileNotFoundException; import java.util.Scanner; public class swea_1861SquareRoom { static int N; static int T; static int [][] map; static class Ans implements Comparable{ int start; int cnt; public Ans(int start, int cnt){ this.start = start; this.cnt = cnt; } @Override public int compareTo(Ans o) { if(this.cnt==o.cnt) { return this.start - o.star.. 2021. 2. 7. 백준- 15652번 N과M (4) [1,1] [2,2]를 허용하여 출력 & [1,2] [2,1] 같은것으로 봄-> 중복 허용 조합 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static int N,M; static StringBuilder sb = new StringBuilder(); public static void main(String[] args) throws IOException { // 고른 수열은 비내림차순이어야 한다. //->1,1도 출력, [1,2] [2,1]을 .. 2021. 2. 7. 백준- 15651번 N과M (3) [1.1]허용 & [1,2][2,1] 다른것으로 봄 -> 중복허용 순열 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static int N,M; static StringBuilder sb = new StringBuilder(); public static void main(String[] args) throws IOException { //중복o순열 //숫자 0부터 N까지 전부 출력함 BufferedReader br = new BufferedRea.. 2021. 2. 7. 백준 -15650번 N과M(2) [1,1] 허용X && [1,2][2,1] 같은것으로 봄-> 중복X 조합 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static int M,N; static StringBuilder sb = new StringBuilder(); public static void main(String[] args) throws IOException { //구할것: 1부터 N까지 자연수 중에서 중복없이 M개를 고른 수열. 고른 수열은 오름차순 //입력 N, M /.. 2021. 2. 7. 백준 - 15649 N과 M(1) [1,1] 허용X & [1,2] [2,1] 다른것으로 봄 ->중복X 순열 import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static int M; static StringBuilder sb = new StringBuilder(); public static void main(String[] args) throws NumberForm.. 2021. 2. 7. 이전 1 ··· 3 4 5 6 7 8 다음