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

수직으로만 지난 곳은 1, 수평으로만 지난 곳은 2, 수직 수평 모두 지난 곳은 3으로 저장하고 상황에 맞게 구현하였다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; int dRow[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; vector boa..
알고리즘
2022. 2. 10. 13:38