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
- 줄 세우기
- UnrealEngine4
- Unreal Engine5
- baekjoon
- RVO
- Programmers
- NRVO
- UE5
- 언리얼엔진5
- 2294
- TObjectPtr
- C++
- C
- DirectX11
- GeeksForGeeks
- RootMotion
- directx
- 팰린드롬 만들기
- const
- 프로그래머스
- 티스토리챌린지
- UnrealEngine5
- winapi
- Frustum
- algorithm
- 백준
- 오블완
- IFileDialog
- 1563
- softeer
Archives
- Today
- Total
목록10942 (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