プログラマkビット数
1927 ワード
質問する
https://programmers.co.kr/learn/courses/30/lessons/42748
コード#コード#
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> answer;
for(auto i:commands){
vector<int> temp;
for(int j=i[0]-1;j<=i[1]-1;j++)
temp.push_back(array[j]);
sort(temp.begin(),temp.end());
answer.push_back(temp[i[2]-1]);
}
return answer;
}
に答える
大きな困難はなく、問題の要求通りにやればいい.コードではtempに配列値を入力しsortを使用してソートします.
Reference
この問題について(プログラマkビット数), 我々は、より多くの情報をここで見つけました https://velog.io/@josajang98/k번째수テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol