일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코테 준비
- English
- readingbook
- STUDYENGLISH
- 알고리즘 문제
- 쉬운 알고리즘 문제
- 원서읽자
- SQL
- D4
- sw expert academy
- swexpertacademy
- 백준
- 코테
- nightroutine
- 원서읽기
- BFS
- 원서
- 직무면접
- 프로그래머스
- 알고리즘
- sw expert
- MySQL
- PyQt
- the midnight library
- englishbook
- 코테 대비
- 삼성
- 완전탐색
- 코딩테스트
- dfs
- Today
- Total
목록알고리즘/프로그래머스 (32)
시나브로
#include #include #include using namespace std; int solution(int bridge_length, int weight, vector truck_weights) { int answer = 0; int time=0; int pass_point=0; int in_point=0; int box=truck_weights.size(); vectorlist; int rest_time=weight; while(1){ if(truck_weights.size()
#include #include using namespace std; vector solution(vector heights) { int box=heights.size(); vector answer(box, 0); vector list; for (int i = heights.size()-1; i >= 0; i--) { if (list.size() != 0) { while (1) { if (list.size() != 0) { if (heights[i] > heights[list.back()]) { answer[list.back()] = i + 1; list.pop_back(); } else break; } else break; } } list.push_back(i); } return answer; } ht..
Q.보호소에서 중성화 수술을 거친 동물 정보를 알아보려 합니다. 보호소에 들어올 당시에는 중성화1되지 않았지만, 보호소를 나갈 당시에는 중성화된 동물의 아이디와 생물 종, 이름을 조회하는 아이디 순으로 조회하는 SQL 문을 작성해주세요. A. SELECT b.animal_id,b.animal_type,b.name from animal_outs b, animal_ins a where b.sex_upon_outcome not like "%Intact%" AND a.sex_upon_intake like "%Intact%" AND a.animal_id=b.animal_id https://programmers.co.kr/learn/courses/30/lessons/59045 코딩테스트 연습 - 보호소에서 중성화한..
Q.아직 입양을 못 간 동물 중, 가장 오래 보호소에 있었던 동물 3마리의 이름과 보호 시작일을 조회하는 SQL문을 작성해주세요. 이때 결과는 보호 시작일 순으로 조회해야 합니다. A. SELECT a.NAME,a.DATETIME from ANIMAL_INS a where a.animal_id NOT IN (select b.ANIMAL_ID from ANIMAL_OUTS b ) order by a.DATETIME limit 3; https://programmers.co.kr/learn/courses/30/lessons/59044 코딩테스트 연습 - 오랜 기간 보호한 동물(1) | 프로그래머스 ANIMAL_INS 테이블은 동물 보호소에 들어온 동물의 정보를 담은 테이블입니다. ANIMAL_INS 테이블 구..