본문 바로가기
프로그래밍/Algorithm

[프로그래머스 Programmers] 숫자 짝궁

by bantomak 2024. 1. 15.

문제 설명

두 정수 X, Y의 임의의 자리에서 공통으로 나타나는 정수 k(0 ≤ k ≤ 9)들을 이용하여 만들 수 있는 가장 큰 정수를 두 수의 짝꿍이라 합니다(단, 공통으로 나타나는 정수 중 서로 짝지을 수 있는 숫자만 사용합니다). X, Y의 짝꿍이 존재하지 않으면, 짝꿍은 -1입니다. X, Y의 짝꿍이 0으로만 구성되어 있다면, 짝꿍은 0입니다.

예를 들어, X = 3403이고 Y = 13203이라면, X와 Y의 짝꿍은 X와 Y에서 공통으로 나타나는 3, 0, 3으로 만들 수 있는 가장 큰 정수인 330입니다. 다른 예시로 X = 5525이고 Y = 1255이면 X와 Y의 짝꿍은 X와 Y에서 공통으로 나타나는 2, 5, 5로 만들 수 있는 가장 큰 정수인 552입니다(X에는 5가 3개, Y에는 5가 2개 나타나므로 남는 5 한 개는 짝 지을 수 없습니다.)
두 정수 X, Y가 주어졌을 때, X, Y의 짝꿍을 return하는 solution 함수를 완성해주세요.

 

제한 사항

  • 3 ≤ X, Y의 길이(자릿수) ≤ 3,000,000입니다.
  • X, Y는 0으로 시작하지 않습니다.
  • X, Y의 짝꿍은 상당히 큰 정수일 수 있으므로, 문자열로 반환합니다.

 

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

1차 실패 코드

using System;
using System.Linq;
using System.Text;

public class Solution {
    public string solution(string X, string Y) {
        string answer = "";
        int[] array = new int[Y.Length];
        StringBuilder newstring = new StringBuilder();

        for (int i = 0; i < X.Length; i++)
        {
            for (int j = 0; j < Y.Length; j++)
            {
                if (X[i] == Y[j] && array[j] != 1)
                {
                    array[j] = 1;
                    newstring.Append(Y[j]);
                    break;
                }
            }

            if (array.All(x => x == 1))
            {
                break;
            }
        }

        if (newstring.Length <= 0)
        {
            answer = "-1";
        }
        else if (BubbleSort(newstring.ToString()).All(x => x == '0'))
        {
            answer = "0";
        }
        else
        {
            answer = BubbleSort(newstring.ToString());
        }

        return answer;
    }
    
    string BubbleSort(string s)
    {
        string[] t1 = new string[s.Length];

        for (int i = 0; i < s.Length; i++)
        {
            t1[i] = s[i].ToString();
        }

        for (int i = 0; i < s.Length - 1; i++)
        {
            for (int j = 0; j < s.Length - 1; j++)
            {
                if (Int32.Parse(t1[j]) < Int32.Parse(t1[j + 1]))
                {
                    var temp = t1[j];
                    t1[j] = t1[j + 1];
                    t1[j + 1] = temp;
                }
            }
        }

        return String.Join("", t1);
    }
}

 

2차 실패 코드

using System;
using System.Linq;
using System.Text;

public class Solution {
    public string solution(string X, string Y) {
        string answer = "";
        
        StringBuilder s1 = new StringBuilder(X);
        StringBuilder s2 = new StringBuilder(Y);
        
        char[] list = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
        StringBuilder newstring = new StringBuilder();

        for (int i = 0; i < 10; i++)
        {
            var count1 = s1.ToString().Count(c => c == list[i]);
            var count2 = s2.ToString().Count(c => c == list[i]);

            var min = Math.Min(count1, count2);
            newstring.Append(list[i], min);
        }

        if (newstring.Length <= 0)
        {
            answer = "-1";
        }
        else if (BubbleSort(newstring.ToString()).All(x => x == '0'))
        {
            answer = "0";
        }
        else
        {
            answer = BubbleSort(newstring.ToString());
        }

        return answer;
    }
    
    string BubbleSort(string s)
    {
        string[] t1 = new string[s.Length];

        for (int i = 0; i < s.Length; i++)
        {
            t1[i] = s[i].ToString();
        }

        for (int i = 0; i < s.Length - 1; i++)
        {
            for (int j = 0; j < s.Length - 1; j++)
            {
                if (Int32.Parse(t1[j]) < Int32.Parse(t1[j + 1]))
                {
                    var temp = t1[j];
                    t1[j] = t1[j + 1];
                    t1[j + 1] = temp;
                }
            }
        }

        return String.Join("", t1);
    }
}

 

풀이 코드

using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;

public class Solution {
    public string solution(string X, string Y) {
        string answer = "";
        
        char[] list = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
        Dictionary<char, int> dic1 = new Dictionary<char, int>() { { '0', 0 }, { '1', 0 }, { '2', 0 }, { '3', 0 }, { '4', 0 }, { '5', 0 }, { '6', 0 }, { '7', 0 }, { '8', 0 }, { '9', 0 } };
        Dictionary<char, int> dic2 = new Dictionary<char, int>() { { '0', 0 }, { '1', 0 }, { '2', 0 }, { '3', 0 }, { '4', 0 }, { '5', 0 }, { '6', 0 }, { '7', 0 }, { '8', 0 }, { '9', 0 } };

        StringBuilder newstring = new StringBuilder();

        for (int i = 0; i < X.Length; i++)
        {
            dic1[X[i]]++;
        }

        for (int i = 0; i < Y.Length; i++)
        {
            dic2[Y[i]]++;
        }

        for (int i = 0; i < list.Length; i++)
        {
            var count1 = dic1[list[i]];
            var count2 = dic2[list[i]];

            var min = Math.Min(count1, count2);
            newstring.Append(list[i], min);
        }

        if (newstring.Length <= 0)
        {
            answer = "-1";
        }
        else if (newstring.ToString().All(x => x == '0'))
        {
            answer = "0";
        }
        else
        {
            answer = StringSort(newstring.ToString());
        }

        return answer;
    }
    
    public string StringSort(string s)
    {
        char[] chars = s.ToCharArray();
        Array.Sort(chars, (x, y) => y.CompareTo(x));

        return new string(chars);
    }
}

 

ComareTo로 비교해서 정렬하면 되는 문제를 버블 정렬에 꽂혀서 삽질을 했다. Simple is best

굳이 어렵게 갈 필요 없다.

댓글