반응형
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
- 프로그래머스
- 프래그먼트
- 후기
- 궁동
- 몰입캠프후기
- 자바스크립트
- html
- MySQL
- 어은동맛집
- 우선순위큐
- 대전맛집
- 위상정렬
- 안드로이드스튜디오
- 분리집합
- 알고리즘
- 리사이클러뷰
- nodeJS
- 카이스트맛집
- 백준
- 앱개발
- 타입스크립트
- glfw
- BFS
- 자바
- node.js
- 카이스트
- 컴퓨터그래픽스
- DP
- 몰입캠프
- computergraphics
Archives
- Today
- Total
목록프로그래머스 (9)
소근소근
[프로그래머스 - 타겟 넘버] 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