Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- UnrealEngine5
- Unreal Engine5
- DirectX11
- RVO
- UE5
- algorithm
- Frustum
- 오블완
- directx
- 줄 세우기
- 티스토리챌린지
- 팰린드롬 만들기
- C++
- 2294
- C
- GeeksForGeeks
- DeferredRendering
- 백준
- 1563
- IFileDialog
- UnrealEngine4
- RootMotion
- baekjoon
- 언리얼엔진5
- Programmers
- winapi
- 프로그래머스
- softeer
- const
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 9019번 : DSLR 본문
https://www.acmicpc.net/problem/9019
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
struct Node
{
int num;
string operations;
};
bool visited[10001] = { false };
string BFS(int start, int target)
{
queue<Node> q;
q.push({ start,"" });
string answer = "";
visited[start] = true;
while (!q.empty())
{
Node curNode = q.front();
q.pop();
int curNum = curNode.num;
string curOperations = curNode.operations;
if (curNum == target)
{
answer = curOperations;
break;
}
int D = (curNum * 2) % 10000;
int S = curNum == 0 ? 9999 : curNum - 1;
int L = curNum / 1000 + (curNum % 1000) * 10;
int R = curNum / 10 + (curNum % 10) * 1000;
if (!visited[D])
{
visited[D] = true;
q.push({ D,curOperations + "D" });
}
if (!visited[S])
{
visited[S] = true;
q.push({ S,curOperations + "S"});
}
if (!visited[L])
{
visited[L] = true;
q.push({ L,curOperations + "L"});
}
if (!visited[R])
{
visited[R] = true;
q.push({ R,curOperations + "R"});
}
}
return answer;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n = 0;
vector<string> results;
cin >> n;
for (int i = 0; i < n; i++)
{
memset(visited, false, sizeof(visited));
int a, b;
cin >> a >> b;
results.push_back(BFS(a, b));
}
for (auto& temp : results)
{
cout << temp << endl;
}
}
|
cs |
해결하고나서 배운게 있는 문제.
D와 S는 그대로 구현하면 되는데, L과 R은 처음에 풀 때 편하게 String으로 변환했었다.
애초에 입력을 string으로 받고 L은 입력 문자열의 L = S.substr(1,3) + S[0];
이런식으로..
그러다보니 코드에 to_string이라던가 stoi 등등, 변환하는 함수들도 많이 쓰여지고 하다보니 시간초과가 떴다.
그래서 전부 지우고 string을 사용하지않고 코드를 다시 짰더니 통과했다.
이런부분에 대한 시간초과는 신경쓴적 없었는데 덕분에 이제는 조심하게 될 것 같다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 1676번 : 팩토리얼 0의 개수 (0) | 2022.10.27 |
---|---|
[Algorithm] Baekjoon 1541번 : 잃어버린 괄호 (0) | 2022.10.27 |
[Algorithm] Baekjoon 1074번 : Z (0) | 2022.10.25 |
[Algorithm] Baekjoon 17626번 : Four Squares (0) | 2022.10.25 |
[Algorithm] Baekjoon 14500번 : 테트로미노 (0) | 2022.10.21 |