Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6월 4주차 #42

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions source/lee/200608_Implement Queue using Stacks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Implement Queue using Stacks

https://leetcode.com/problems/implement-queue-using-stacks/

## 문제 접근 방법

스택 두 개를 이용

- 스택1은 push만, 스택2는 pop과 peek할 때만 사용함
Comment on lines +7 to +9
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

영어문제를 풀어야 하는 일이 많으신가봐요! 저도 이 글 보고 링크 문제 확인해봤는데요.
전 스택1과 배열을 생성해서 풀려고 했네요ㅋㅋ
pop 메서드 호출 시

  1. 배열 생성
  2. stack 요소를 배열에 0부터 모두 저장
  3. 마지막 인덱스의 값 return

이 풀이는 배열해제를 시키지 않으면 가비지 데이터가 많이 생길 것 같고 매 pop마다 배열을 생성하는 번거로움이 있었어요. lee님이 푸신 스택 두개 이용하는게 가장 효율적인 것 같네요!


## 코드 구현

```java
import java.util.Stack;

class MyQueue {
static Stack<Integer> s1;
static Stack<Integer> s2;

/** Initialize your data structure here. */
public MyQueue() {
s1 = new Stack<>();
s2 = new Stack<>();
}

/** Push element x to the back of queue. */
public void push(int x) {
s1.push(x);
}

/** Removes the element from in front of queue and returns that element. */
public int pop() {
if (s2.isEmpty()) {
while (!s1.isEmpty()){
s2.push(s1.pop());
}
}
return s2.pop();
}

/** Get the front element. */
public int peek() {
if (s2.isEmpty()) {
while (!s1.isEmpty()){
s2.push(s1.pop());
}
}
return s2.peek();

}

/** Returns whether the queue is empty. */
public boolean empty() {
return s1.isEmpty() && s2.isEmpty();
}
}

```
52 changes: 52 additions & 0 deletions source/lee/team/20200621_연속합.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# 연속합

https://www.acmicpc.net/problem/1912

## 문제 접근 방법

- dp인건 알고있었지만 어떻게 푸는지 몰라서 해설 찾아봄
- 핵심은 i-1번째까지의 합(dp[i-1])에 현재 값(arr[i])을 더한 것과, 그냥 현재 값 중 누가 더 큰 지 비교하는것

### 코드

```java
import java.util.Scanner;

public class Baekjoon1912 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
int[] arr = new int[n];
for (int i=0;i<n;i++){
arr[i]=scanner.nextInt();
}

System.out.println(solution(n, arr));

}

private static int solution(int n, int[] arr) {
int[] dp = new int[n];
dp[0]=arr[0];
for (int i=1;i<n;i++){
dp[i]=Math.max(dp[i-1]+arr[i], arr[i]);
}

int max=Integer.MIN_VALUE;
for (int i:dp){
if (max<i) max=i;
}
Comment on lines +35 to +38
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

푼제풀이 확인 했습니다:) 고생하셨어요! 프로그램의 첫번째 코드에 max 연산을 넣으면 최대값을 찾는 반복문을 수행하지 않을 수 있어요. 이미 알고 계실거라 생각하지만...ㅎㅎ

추가적으로 이 코드에서
MIN_VALUE는 숫자 클래스의 최소값 상수인데 0이 아닌 최소값 상수를 할당한 이유가 무엇인지 궁금해요!

return max;
}


}
```

### Time complexity

O(n)

### Space complexity

O(n)