99클럽
-
- 오늘의 학습 키워드 : 이분탐색[문제 이름 : 징검다리 (프로그래머스, Lv 4) ]문제 url : https://school.programmers.co.kr/learn/courses/30/lessons/43236내가 작성한 코드는 아래와 같다.import java.util.*;class Solution { public int solution(int distance, int[] rocks, int n) { // 바위 위치 정렬 Arrays.sort(rocks); int answer = 0; // 지점 간 최소 거리의 최솟값 int low = 1; // 지점 간 최소 거리의 최댓값 int high = dis..
99클럽 코테 스터디 14일차 TIL [이분탐색]- 오늘의 학습 키워드 : 이분탐색[문제 이름 : 징검다리 (프로그래머스, Lv 4) ]문제 url : https://school.programmers.co.kr/learn/courses/30/lessons/43236내가 작성한 코드는 아래와 같다.import java.util.*;class Solution { public int solution(int distance, int[] rocks, int n) { // 바위 위치 정렬 Arrays.sort(rocks); int answer = 0; // 지점 간 최소 거리의 최솟값 int low = 1; // 지점 간 최소 거리의 최댓값 int high = dis..
2024.08.04 -
- 오늘의 학습 키워드 : 이분탐색[문제 이름 : 입국심사 (프로그래머스, Lv 3) ]문제 url : https://school.programmers.co.kr/learn/courses/30/lessons/43238 내가 작성한 코드는 아래와 같다.import java.util.*;class Solution { public long solution(int n, int[] times) { Arrays.sort(times); long answer = 0; long start = 0; // 모든 사람이 제일 오래 걸리는 심사대로 입국을 받을 때 걸리는 시간 long end = (long) times[times.length - 1] * n..
99클럽 코테 스터디 13일차 TIL [이분탐색]- 오늘의 학습 키워드 : 이분탐색[문제 이름 : 입국심사 (프로그래머스, Lv 3) ]문제 url : https://school.programmers.co.kr/learn/courses/30/lessons/43238 내가 작성한 코드는 아래와 같다.import java.util.*;class Solution { public long solution(int n, int[] times) { Arrays.sort(times); long answer = 0; long start = 0; // 모든 사람이 제일 오래 걸리는 심사대로 입국을 받을 때 걸리는 시간 long end = (long) times[times.length - 1] * n..
2024.08.03 -
- 오늘의 학습 키워드 : dfs(깊이 우선 탐색)[문제 이름 : 뉴스 전하기 (백준 1135, G2) ]문제 url : https://www.acmicpc.net/problem/11279 내가 작성한 코드는 아래와 같다.import java.util.*;import java.io.*;public class Main { static ArrayList[] tree; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine(..
99클럽 코테 스터디 12일차 TIL [DFS]- 오늘의 학습 키워드 : dfs(깊이 우선 탐색)[문제 이름 : 뉴스 전하기 (백준 1135, G2) ]문제 url : https://www.acmicpc.net/problem/11279 내가 작성한 코드는 아래와 같다.import java.util.*;import java.io.*;public class Main { static ArrayList[] tree; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine(..
2024.08.02 -
- 오늘의 학습 키워드 : PriorityQueue (내림차순)[문제 이름 : 최대 힙 (백준, S2) ]문제 url : https://www.acmicpc.net/problem/11279 내가 작성한 코드는 아래와 같다.import java.util.*;import java.io.*;public class Main { static StringBuilder sb = new StringBuilder(); static PriorityQueue pq = new PriorityQueue(Collections.reverseOrder()); public static void main(String[] args) throws IOException { BufferedReader br = ..
99클럽 코테 스터디 10일차 TIL [PriorityQueue]- 오늘의 학습 키워드 : PriorityQueue (내림차순)[문제 이름 : 최대 힙 (백준, S2) ]문제 url : https://www.acmicpc.net/problem/11279 내가 작성한 코드는 아래와 같다.import java.util.*;import java.io.*;public class Main { static StringBuilder sb = new StringBuilder(); static PriorityQueue pq = new PriorityQueue(Collections.reverseOrder()); public static void main(String[] args) throws IOException { BufferedReader br = ..
2024.07.31 -
- 오늘의 학습 키워드 : PriorityQueue[문제 이름 : 최소 힙]문제 url : https://www.acmicpc.net/problem/1927내가 작성한 코드는 아래와 같다.import java.util.*;import java.io.*;public class Main { static StringBuilder sb; static PriorityQueue pq = new PriorityQueue(); public static void main(String[] args) throws IOException { sb = new StringBuilder(); BufferedReader br = new BufferedReader(new InputStreamR..
99클럽 코테 스터디 9일차 TIL [PriorityQueue]- 오늘의 학습 키워드 : PriorityQueue[문제 이름 : 최소 힙]문제 url : https://www.acmicpc.net/problem/1927내가 작성한 코드는 아래와 같다.import java.util.*;import java.io.*;public class Main { static StringBuilder sb; static PriorityQueue pq = new PriorityQueue(); public static void main(String[] args) throws IOException { sb = new StringBuilder(); BufferedReader br = new BufferedReader(new InputStreamR..
2024.07.30 -
- 오늘의 학습 키워드 : Queue[문제 이름 : 과제 진행하기]문제 url : https://school.programmers.co.kr/learn/courses/30/lessons/118667내가 작성한 코드는 아래와 같다.import java.util.*;class Solution { public int solution(int[] queue1, int[] queue2) { int answer = 0; Queue q1 = new LinkedList(); Queue q2 = new LinkedList(); long totalSum = 0; long q1Sum = 0; for(int i=0; ..
99클럽 코테 스터디 8일차 TIL [Queue]- 오늘의 학습 키워드 : Queue[문제 이름 : 과제 진행하기]문제 url : https://school.programmers.co.kr/learn/courses/30/lessons/118667내가 작성한 코드는 아래와 같다.import java.util.*;class Solution { public int solution(int[] queue1, int[] queue2) { int answer = 0; Queue q1 = new LinkedList(); Queue q2 = new LinkedList(); long totalSum = 0; long q1Sum = 0; for(int i=0; ..
2024.07.29