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
- 징검다리 건너기
- 트라이 #trie #알고리즘
- 트라이
- 보행자 천국
- 호텔 방 배정
- 튜플
- 알고리즘
- Spring Boot
- 가사 검색
- Tistory
- 프로그래머스
- 크레인 인형뽑기 게임
- jdbc
- 티스토리
- Open API
- bulk update
- Python
- pycon
- trie
- 불량 사용자
- CleanCode
- 카카오 인턴
- 티스토리 open api
Archives
- Today
- Total
택시짱의 개발 노트
[프로그래머스] 줄 서는 방법 본문
링크
https://programmers.co.kr/learn/courses/30/lessons/12936
풀이
사람의 수 n과, 자연수 k가 주어질 때, 사람을 나열 하는 방법을 사전 순으로 나열 했을 때, k번째 방법을 구하는 문제이다.
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<string>
#include<set>
#include<map>
#include<cstring>
#include<functional>
#include<cmath>
#include<stack>
#define SIZE 22
const int INF = 2000000000;
using namespace std;
typedef long long int ll;
ll dp[SIZE];
vector<int> num;
vector<int> solution(int n, long long k) {
dp[0] = 1;
for (int i = 1; i <= n; i++) {
dp[i] = dp[i - 1] * i;
num.push_back(i);
}
vector<int> answer;
k--;
while (!num.empty()) {
if (k == 0) {
answer.push_back(num[k]);
num.erase(num.begin());
continue;
}
ll mok = k / dp[n-1];
ll na = k % dp[n-1];
answer.push_back(num[mok]);
num.erase(num.begin() + mok);
k = na; n--;
}
return answer;
}
반응형
'알고리즘' 카테고리의 다른 글
[프로그래머스] 단어 변환 (0) | 2020.03.20 |
---|---|
[백준] 17822번 원판 돌리기 (0) | 2020.03.20 |
[프로그래머스] 최고의 집합 (0) | 2020.03.19 |
[프로그래머스] 기둥과 보 설치 (0) | 2020.03.19 |
[프로그래머스] 블록 게임 (0) | 2020.03.17 |
Comments