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 |
Tags
- 누적 합
- ue5
- 그리디 알고리즘
- 문자열
- 유니온 파인드
- 수학
- 재귀
- 백트래킹
- 백준
- 그래프
- XR Interaction Toolkit
- DFS
- 알고리즘
- 우선순위 큐
- VR
- c++
- 정렬
- Team Fortress 2
- 브루트포스
- 트리
- 스택
- 시뮬레이션
- BFS
- 투 포인터
- 다이나믹 프로그래밍
- 다익스트라
- 구현
- 자료구조
- Unreal Engine 5
- 유니티
Archives
- Today
- Total
목록알파벳 C++ (1)
1일1알

백트래킹을 이용해서 해결할 수 있는 문제이다. 처음에 방문한 알파벳을 set에 저장해서 이미 방문한 곳인지 확인해서 풀었더니 시간초과가 났다. 그래서 알파벳 개수의 크기의 visited 배열을 만들어서 방문 체크를 O(1)에 할 수 있도록 수정했더니 통과되었다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; int r, c; int ans = 0; int dRow[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; vec..
알고리즘
2022. 2. 27. 12:36