일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 분할정복
- 독학
- 백준
- 부주상골
- 프로그래머스
- SWIFT
- 부주상골수술후기
- istringstream
- 카카오인턴십
- 코딩테스트
- c++
- 리눅스
- sql
- 코테
- 카카오코테
- 스택
- 세브란스
- 구현
- 독일어
- BFS
- SQLD
- 롯데정보통신
- dp
- 독일어독학
- DFS
- ChatGPT
- 카카오인턴
- IOS
- 부주상골수술
- 부주상골증후군
Archives
- Today
- Total
슈뢰딩거의 고등어
정렬 (vector, sort) 본문
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> answer;
vector<int> temp;
for(int i = 0; i < commands.size(); i++) {
temp = array;
sort(temp.begin() + commands[i][0] - 1, temp.begin() + commands[i][1]);
answer.push_back(temp[commands[i][0] + commands[i][2]-2]);
}
return answer;
}
'알고리즘' 카테고리의 다른 글
[프로그래머스] 로또의 최고 순위와 최저순위 (0) | 2022.02.08 |
---|---|
[프로그래머스] 로또의 최고 순위와 최저순위 (0) | 2022.02.08 |
DFS (순열, 조합) (0) | 2022.02.08 |
[백준] 17837 새로운 게임2 (0) | 2022.02.07 |
[프로그래머스] SQL 고득점 키트 (0) | 2022.02.04 |
Comments