반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- BFS
- nodeJS
- html
- 타입스크립트
- 백준
- 몰입캠프후기
- glfw
- node.js
- DP
- 카이스트맛집
- 자바스크립트
- 자바
- 대전맛집
- 우선순위큐
- 후기
- 분리집합
- 프래그먼트
- MySQL
- 카이스트
- 어은동맛집
- 몰입캠프
- 안드로이드스튜디오
- 리사이클러뷰
- 궁동
- 프로그래머스
- computergraphics
- 컴퓨터그래픽스
- 위상정렬
- 알고리즘
- 앱개발
Archives
- Today
- Total
목록너비우선탐색 (1)
소근소근
[프로그래머스 - 타겟 넘버] BFS C++
bfs를 이용하면 쉽게 해결할 수 있는 문제이다. queue에 -num , num 을 더해주고 큐에 push하면서 반복문을 돌고, target 에 도달하면 answer를 증가시켜서 카운트한다. #include #include #include #include #include #include #include using namespace std; queue q; int solution(vector nums, int target) { int ans = 0; q.push({0,-nums[0]}); q.push({0,nums[0]}); while(!q.empty()){ int now_idx = q.front().first; int total = q.front().second; q.pop(); if(now_idx =..
Algorithm
2022. 1. 8. 17:35