문제 출처 : https://www.acmicpc.net/problem/16397
이 문제는 BFS 기법을 사용해서 문제를 해결하였다.
아래는 해당 문제를 풀이한 소스 코드이다.
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
65
66
67
68
69
70
71
|
#include<stdio.h>
#include<queue>
#pragma warning(disable:4996)
using namespace std;
int N, T, G;
int flag = 0;
int visit[200001];
struct list
{
int num;
int cnt = 0;
};
queue <list> que;
void BFS()
{
{
list temp;
temp = que.front();
que.pop();
break;
{
flag = 1;
return;
}
if (x <= 99999 && visit[x] == 0)
{
visit[x]=1;
list A;
A.num = x;
}
if (y <= 99999)
{
int value = 1;
int B = y;
while (B)
{
B = B / 10;
value = value * 10;
}
value = value / 10;
if (visit[y - value] == 0)
{
list A;
A.num = y - value;
visit[A.num]++;
}
}
}
}
int main()
{
scanf("%d %d %d", &N, &T, &G);
list temp;
temp.num = N;
BFS();
if (flag == 0)
printf("ANG");
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘' 카테고리의 다른 글
백준 5397번 문제 ( 키로거 ) (0) | 2020.02.26 |
---|---|
백준 3079번 문제 ( 입국 심사 ) (0) | 2020.02.26 |
백준 9019번 문제 ( DSLR ) (0) | 2020.02.18 |
백준 7569번 문제 ( 토마토 ) (0) | 2020.02.18 |
백준 6593번 문제 ( 상범 빌딩 ) (0) | 2020.02.18 |