문제 출처 : https://www.acmicpc.net/problem/1039
이 문제는 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;
{
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 (K == 0 && max_value < stoi(temp))
max_value = stoi(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
|
'알고리즘' 카테고리의 다른 글
백준 1753번 문제 ( 최단 경로 ) (0) | 2020.04.23 |
---|---|
백준 9466번 문제 ( 텀 프로젝트 ) (0) | 2020.04.23 |
백준 2042번 문제 ( 구간 합 구하기 ) (0) | 2020.02.26 |
백준 5397번 문제 ( 키로거 ) (0) | 2020.02.26 |
백준 3079번 문제 ( 입국 심사 ) (0) | 2020.02.26 |