문제 출처 : https://www.acmicpc.net/problem/1039

 

1039번: 교환

첫째 줄에 정수 N과 K가 주어진다. N은 1,000,000보다 작거나 같은 자연수이고, K는 10보다 작거나 같은 자연수이다.

www.acmicpc.net

이 문제는 BFS 기법을 이용하여 문제를 해결했다.

string으로 입력을 받아서 정수로 전환하면서 문제를 해결했고 set 함수를 이용하여서 방문 배열처럼 사용하였다.

아래는 해당 문제를 풀이한 소스 코드이다.

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<stdio.h>
#include<iostream>
#include<queue>
#include<string>
#include<set>
#pragma warning(disable:4996)
using namespace std;
string N;
int K;
int value;
int max_value;
void BFS(string str, int size)
{
    queue<string> que;
    while (!que.empty() && K != 0)
    {
        set<string> used;
        int que_size = que.size();
        K--;
        for (int i = 0; i < que_size; i++)
        {
            string temp = que.front();
            que.pop();
            for (int j = 0; j < size-1 ; j++)
            {
                for (int k = j + 1; k < size; k++)
                {
                    if (j == 0 && temp[k] == '0')
                        continue;
                    swap(temp[j], temp[k]);
                    if (used.find(temp) == used.end())
                    {
                        if (K == 0 && max_value < stoi(temp))
                            max_value = stoi(temp);
                        que.push(temp);
                        used.insert(temp);
                    }
                    swap(temp[j], temp[k]);
                }
            }
            
        }
    }
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
 
    cin >> N >> K;
    int size = N.size();
    if (size == 1 || (size == 2 && stoi(N) % 10 == 0))
    {
        printf("-1");
        return 0;
    }
    BFS(N,size);
    if (max_value == 0)
        printf("-1");
    else
        printf("%d", max_value);
    
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
블로그 이미지

뀨심볼

깃허브 주소는 : https://github.com/hhyc2 입니다~

,