일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 티스토리
- VS ERROR
- c
- 연산자
- 함수
- 알고리즘
- Kotlin
- Visual Studio
- 이지스퍼블리싱
- c#
- Javascript
- 리뷰
- 백준
- 포인터
- Tips프로그래밍강좌
- 프로그래밍
- Programming
- tipssoft
- 문법
- c++
- Tips강좌
- doit코틀린프로그래밍
- Desktop
- 배열
- Direct2D
- 지식나눔강좌
- CS
- Windows
- 김성엽
- Win32
Archives
- Yesterday
- Today
- Total
목록1912 (1)
F.R.I.D.A.Y.
BAEKJOON 1912:연속합(DP)
주어진 배열에서 연속하는 각 요소의 합이 최대인 값 구하기. 코드 #include using namespace std; #define max(x,y) ((x) > (y) ? (x) : (y)) int main() { int n; int* arr; cin >> n; arr = new int[n]; for (int i = 0; i > arr[i]; int result = arr[0]; { for (int i = 1; i 0 && arr[i - 1] + arr[i] > 0) { arr[i] += arr[i - 1]; } result = max(arr[i], result); } } cout 0 위 조건을 추가해 점화식을 적용하면 다음..
DEV/Algorithm
2021. 12. 21. 11:13