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
- C
- 프로그래머스
- 1563
- Unreal Engine5
- softeer
- Programmers
- IFileDialog
- 팰린드롬 만들기
- 언리얼엔진5
- DirectX11
- UnrealEngine4
- NRVO
- GeeksForGeeks
- 2294
- C++
- baekjoon
- DeferredRendering
- 백준
- 오블완
- 티스토리챌린지
- winapi
- RVO
- algorithm
- UnrealEngine5
- UE5
- Frustum
- RootMotion
- directx
- const
- 줄 세우기
Archives
- Today
- Total
목록팰린드롬? (1)
Game Develop
[Algorithm]Baekjoon 10942번 :: 팰린드롬?
https://www.acmicpc.net/problem/10942 10942번: 팰린드롬? 총 M개의 줄에 걸쳐 홍준이의 질문에 대한 명우의 답을 입력으로 주어진 순서에 따라서 출력한다. 팰린드롬인 경우에는 1, 아닌 경우에는 0을 출력한다. www.acmicpc.net 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 using namespace std; int arr[2001] = { 0 }; int dp[2001][2001] = { 0 }; int n, m, a, b; int main()..
Algorithm/Baekjoon
2023. 11. 7. 20:15