본문 바로가기
휴지통/알고리즘 & 자료구조

줄 서는 방법

by 신재권 2023. 3. 8.
package programmers;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class 줄_서는_방법 {

   public static int[] solution(int n, long k) {
      List<Integer> list = new ArrayList<>();
      int[] answer = new int[n];
      long fn = 1;
      for (int i = 1; i <= n; i++) {
         fn *= i;
         list.add(i);
      }
      k--;

      int idx = 0;
      while (n > 0) {
         //숫자를 고정시킨다고 가정하고 나오는 경우의 수
         fn /= n;
         //들어갈 숫자 결정
         answer[idx++] = list.get((int)(k / fn));
         list.remove((int)(k / fn));
         k %= fn;
         n--;
      }

      return answer;
   }

   public static void main(String[] args) {
      System.out.println(Arrays.toString(solution(3, 5)));
   }
}

'휴지통 > 알고리즘 & 자료구조' 카테고리의 다른 글

전력망을 둘로 나누기  (0) 2023.03.12
택배상자  (0) 2023.03.10
배달  (0) 2023.03.07
덧칠하기  (0) 2023.03.06
행렬 테두리 회전하기  (0) 2023.03.03