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
- 백준
- Unreal Engine 5
- VR
- 그리디 알고리즘
- 알고리즘
- ue5
- 자료구조
- 구현
- 우선순위 큐
- 백트래킹
- 스택
- 다이나믹 프로그래밍
- 브루트포스
- 다익스트라
- 정렬
- XR Interaction Toolkit
- 문자열
- 트리
- 그래프
- c++
- 누적 합
- 유니티
- 투 포인터
- 수학
- 유니온 파인드
- DFS
- Team Fortress 2
- 재귀
- BFS
- 시뮬레이션
Archives
- Today
- Total
목록백준 1913 C++ (1)
1일1알
백준 1913번 달팽이 C++
https://www.acmicpc.net/problem/1913 1913번: 달팽이 N개의 줄에 걸쳐 표를 출력한다. 각 줄에 N개의 자연수를 한 칸씩 띄어서 출력하면 되며, 자릿수를 맞출 필요가 없다. N+1번째 줄에는 입력받은 자연수의 좌표를 나타내는 두 정수를 한 칸 띄어서 www.acmicpc.net #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int dRow[4] = { -1,0,1,0 }; int dC..
알고리즘
2023. 2. 17. 11:58