-
Notifications
You must be signed in to change notification settings - Fork 99
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
[정기적 문제 풀이 추가 PR] 2022.03.30 정기적 문제 풀이 추가합니다! #8
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f98f0a0
[풀이 추가] 22-03-23, 1문제, 후보키
codeisneverodd 6b38ef2
[풀이 추가] 22-03-24, 1문제, 프린터
codeisneverodd cbfcd1f
[기타 수정] 주석 수정.
codeisneverodd 6c323dd
[풀이 추가] 2022-03-24, 1문제, 베스트앨범
codeisneverodd 2874c0f
[README 수정] Level 2 풀이 문제 수 수정, Level 3 풀이 중으로 변경
codeisneverodd e51be25
[풀이 추가] 2022-03-24, 1문제, 베스트앨범
codeisneverodd 6f6fd4d
[풀이 추가] 2022-03-29, 1문제, 여행경로
codeisneverodd 5136617
[풀이 추가] 2022-03-28, 1문제, 입국심사
codeisneverodd d777b48
[풀이 추가] 2022-03-27, 1문제, 가장 먼 노드
codeisneverodd 8b45980
[풀이 추가] 2022-03-29, 1문제, 네트워크
codeisneverodd aa2f5bf
Merge branch 'main' into codeisneverodd
codeisneverodd 8aca2be
[수정] Level 3 풀이 문제 수 수정
codeisneverodd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ function solution(priorities, location) { | |
return answer; | ||
} | ||
|
||
//정답 2 - codisneverodd | ||
//정답 2 - codeisneverodd | ||
function solution(priorities, location) { | ||
var answer = 0; | ||
let documents = priorities.map((priority, documentLocation) => [documentLocation, priority]) | ||
|
@@ -46,9 +46,9 @@ function solution(priorities, location) { | |
//정답 3 - jaewon1676 | ||
function solution(priorities, location) { | ||
var answer = 0; | ||
while(true){ | ||
while (true) { | ||
|
||
if (priorities[0] < Math.max(...priorities)){ | ||
if (priorities[0] < Math.max(...priorities)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 줄 정리 감사합니다 ㅎㅎ |
||
if (location - 1 < 0) location = priorities.length | ||
priorities.push(priorities.shift()) | ||
location--; | ||
|
@@ -64,4 +64,53 @@ function solution(priorities, location) { | |
|
||
} | ||
return answer | ||
} | ||
|
||
//정답 4 - codeisneverodd | ||
//shift를 사용하지 않고 queue를 구현한 풀이를 추가합니다. | ||
function solution(priorities, location) { | ||
let answer = 0; | ||
const printer = new Queue; | ||
priorities.forEach((priority, index) => { | ||
printer.enqueue([priority, index]) | ||
}) | ||
while (printer.size() > 0) { | ||
const check = printer.dequeue() | ||
const countHigherPriority = printer.queue.filter(x => x[0] > check[0]).length | ||
if (countHigherPriority > 0) { | ||
printer.enqueue(check) | ||
} else { | ||
answer += 1 | ||
if (check[1] === location) break | ||
} | ||
|
||
} | ||
return answer; | ||
} | ||
|
||
class Queue { | ||
constructor() { | ||
this.queue = [] | ||
this.front = 0 | ||
this.rear = 0 | ||
} | ||
|
||
enqueue(value) { | ||
this.queue[this.rear++] = value | ||
} | ||
|
||
dequeue() { | ||
const value = this.queue[this.front] | ||
delete this.queue[this.front] | ||
this.front += 1 | ||
return value | ||
} | ||
|
||
peek() { | ||
return this.queue(this.front) | ||
} | ||
|
||
size() { | ||
return this.rear - this.front | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 고생하셨습니다. 저도 참고하겠습니다..! :) |
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - codeisneverodd | ||
function solution(relation) { | ||
//1. 가능한 조합을 1개~Attribute개수 만큼 찾는다. | ||
//2. 해당 개수의 조합이 키가 될 수 있는지 검사하고, 가능하면 후보키에 추가한다. | ||
//3. 단 추가하려고 할 때, 후보키에 있는 값이 자신의 부분 집합이 될 수 있으면 추가하지 않는다. | ||
const keys = [] | ||
const totalAttrCount = relation[0].length | ||
const indexList = Array.from(Array(totalAttrCount), (x, index) => index) // [0,1,2,3 ... totalAttrCount-1] | ||
|
||
//Fn for 2. 해당 조합으로 각 row의 attribute를 모았을 때 중복이 있는지를 반환하는 함수 | ||
const isUnique = (relation, attrIndexComb) => { | ||
let result = Array.from(Array(relation.length), x => '') | ||
for (const attrIndex of attrIndexComb) { | ||
relation.forEach((row, rowIndex) => result[rowIndex] += row[attrIndex]) //Set를 이용해 중복 검사를 하기 위해 result에 string으로 넣음. | ||
} | ||
return result.length === [...new Set(result)].length | ||
} | ||
|
||
//Fn for 3. keys에 현재 구한 검사할 조합의 부분집합이 존재하는지 반환, 단 keys에 들어있는 각 조합의 크기는 현재 검사할 조합의 크기보다 작다. | ||
const isMinimal = (attrComb) => { | ||
for (const key of keys) if (key.every(attr => attrComb.includes(attr))) return false | ||
return true | ||
} | ||
|
||
//가능한 모든 조합을 검사 | ||
for (let attrCount = 1; attrCount <= totalAttrCount; attrCount++) { | ||
const combinations = getCombinations(indexList, attrCount) | ||
for (const attrComb of combinations) { | ||
if (isMinimal(attrComb) && isUnique(relation, attrComb)) keys.push(attrComb) | ||
} | ||
} | ||
|
||
return keys.length | ||
} | ||
|
||
//Fn for 1. 조합을 반환하는 함수 | ||
const getCombinations = (array, selectNumber) => { | ||
const result = []; | ||
if (selectNumber === 1) { | ||
return array.map((element) => [element]); | ||
} | ||
array.forEach((fixed, index, origin) => { | ||
const restCombinations = getCombinations(origin.slice(index + 1), selectNumber - 1); | ||
const attached = restCombinations.map((restCombination) => [fixed, ...restCombination]); | ||
result.push(...attached); | ||
}); | ||
return result; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - codeisneverodd | ||
function solution(n, edge) { | ||
const graph = Array.from(Array(n + 1), () => []) | ||
for (const [src, dest] of edge) { | ||
graph[src].push(dest) | ||
graph[dest].push(src) | ||
} | ||
const distance = Array(n + 1).fill(0) | ||
distance[1] = 1 | ||
const toBeSearched = [1] | ||
while (toBeSearched.length > 0) { | ||
const src = toBeSearched.shift() | ||
for (const dest of graph[src]) { | ||
if (distance[dest] === 0) { | ||
distance[dest] = distance[src] + 1 | ||
toBeSearched.push(dest) | ||
} | ||
} | ||
} | ||
return distance.filter(x => x === Math.max(...distance)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - codeisneverodd | ||
function solution(n, computers) { | ||
let answer = 0 | ||
const visited = new Array(n).fill(false) | ||
const newNetwork = (startComputer) => { | ||
//새로운 네트워크를 만들 시작 컴퓨터를 파라미터로 받는다. | ||
const toBeVisited = [startComputer] | ||
while (toBeVisited.length > 0) { | ||
//시작 컴퓨터로부터 방문 가능한 컴퓨터를 모두 방문하며 해당 컴퓨터의 visited를 true로 바꾼다 | ||
const currentComputer = toBeVisited.pop() | ||
visited[currentComputer] = true | ||
for (let nextComputer = 0; nextComputer < n; nextComputer++) { | ||
if (!visited[nextComputer] && computers[currentComputer][nextComputer]) { | ||
toBeVisited.push(nextComputer) | ||
} | ||
} | ||
} | ||
} | ||
|
||
for (let startComputer = 0; startComputer < n; startComputer++) { | ||
if (!visited[startComputer]) { | ||
newNetwork(startComputer) | ||
//새로운 네트워크를 생성할 때마다 정답을 1 증가시킨다. | ||
answer++ | ||
} | ||
} | ||
return answer | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - codeisneverodd | ||
function solution(genres, plays) { | ||
var answer = []; | ||
const songs = [] | ||
const genreSumHash = {} | ||
const genreSumArr = [] | ||
|
||
//고유번호, 장르, 플레이수를 담은 songs | ||
genres.forEach((genre, id) => { | ||
songs.push({id: id, genre: genre, play: plays[id]}) | ||
genreSumHash[genre] = genreSumHash[genre] === undefined ? plays[id] : genreSumHash[genre] + plays[id] | ||
}) | ||
|
||
//장르별 플레이수 합으로 정렬하기 위해 생성한 배열 genreSumArr | ||
for (const genre in genreSumHash) genreSumArr.push([genre, genreSumHash[genre]]) | ||
genreSumArr.sort((a, b) => b[1] - a[1]) | ||
|
||
//각 장르안에서 각 노래의 play수가 높은 순으로 정렬하고 앞에서부터 2개까지 정답에 고유번호를 push | ||
for (const genre of genreSumArr) { | ||
const sorted = songs.filter(song => song.genre === genre[0]).sort((a, b) => b.play - a.play) | ||
for (let i = 0; i < 2 && i < sorted.length; i++) answer.push(sorted[i].id) | ||
} | ||
return answer; | ||
} | ||
|
||
//정답 2 - codeisneverodd | ||
//Map과 고차함수를 적극적으로 이용한 풀이 | ||
function solution(genres, plays) { | ||
const genreMap = new Map(); // {genre:{totalPlay:number, songs:[{play:number, id:number}, ...]} | ||
genres | ||
.map((genre, id) => [genre, plays[id]]) | ||
.forEach(([genre, play], id) => { | ||
const data = genreMap.get(genre) || {totalPlay: 0, songs: []} | ||
genreMap.set(genre, { | ||
totalPlay: data.totalPlay + play, | ||
songs: [...data.songs, {play: play, id: id}] | ||
.sort((a, b) => b.play - a.play) | ||
.slice(0, 2) | ||
}) | ||
}) | ||
|
||
return [...genreMap.entries()] //entries => [[genre, {totalPlay, songs}], ...] | ||
.sort((a, b) => b[1].totalPlay - a[1].totalPlay) | ||
.flatMap(item => item[1].songs) // [[songs], [songs]] => [songs, songs] | ||
.map(song => song.id) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - codeisneverodd | ||
function solution(tickets) { | ||
const routes = [] //최종 가능 루트들을 담을 배열 | ||
const makeRoutes = (currentDepart, remainTickets, currentRoute) => { | ||
//현재 출발지, 남은 티켓들, 현재 까지 만든 루트를 기반으로 경로를 만들어 가는 재귀 함수 | ||
if (remainTickets.length > 0) { | ||
remainTickets.forEach(([depart, nextDepart], index) => { | ||
if (depart === currentDepart) | ||
//현재 출발지와 같은 출발지를 가진 티켓이 있다면, 해당 티켓을 사용하고 해당 티켓의 도착지를 다음 출발지로 지정 | ||
makeRoutes( | ||
nextDepart, | ||
[...remainTickets.slice(0, index), ...remainTickets.slice(index + 1)], | ||
[...currentRoute, currentDepart]) | ||
}) | ||
} else { | ||
//티켓을 모두 사용하면 최종 가능 루트에 포함 | ||
routes.push([...currentRoute, currentDepart]) | ||
} | ||
} | ||
makeRoutes("ICN", tickets, []) | ||
return routes.sort()[0] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - codeisneverodd | ||
function solution(n, times) { | ||
//최소로 걸릴 수 있는 시간 left, 최대로 걸릴 수 있는 시간 right | ||
let [left, right] = [1, Math.max(...times) * n] | ||
while (left <= right) { | ||
const mid = Math.floor((left + right) / 2) | ||
const sum = times.reduce((acc, time) => acc + Math.floor(mid / time), 0) | ||
//sum은 mid 시간 동안 처리 할 수 있는 사람의 수 | ||
if (sum < n) { | ||
left = mid + 1 | ||
} else { | ||
right = mid - 1 | ||
} | ||
} | ||
// left 가 right를 넘어갔다는 것은 left가 n보다 크거나 같아져서 n명을 수용할 수 최소값이 되있다는 것이다. | ||
return left; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
문제 수정이 필요할 것 같습니다 :)