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
- 5639
- 실습
- 의미와 무의미의 경계에서
- 오손데이터읽기
- 1253번
- 2단계로킹
- 1967번
- 언리얼 플러그인
- Unreal
- objtofbx
- 백준
- 1759번
- command not found
- C++
- FBX
- 비재귀셰그먼트
- Security
- oracle
- hackerank
- 백준 1253번
- UnrealMP
- 트랜잭션 관리
- 민겸수
- Linux
- 데이터베이스 배움터
- 셰그먼트트리
- SQL
- OS
- UActor
- 언리얼 커스텀 플러그인
Archives
- Today
- Total
fatalite
연속합 / 1912번 백준 본문
문제
문제 난이도 : 실버 2
문제 분류 : 다이나믹 프로그래밍
문제 코드
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
vector<int> List;
int main()
{
//Input
int n;
cin >> n;
for (int i = 0; i < n; ++i)
{
int Tmp;
cin >> Tmp;
List.push_back(Tmp);
}
vector<int> DP(List.size(), 0);
//Main Logic Start
//Find Sum of N Elements
DP[0] = List[0];
int MaxVal = List[0];
for (int i = 1; i < n; ++i)
{
DP[i] = max(DP[i - 1] + List[i], List[i]);
MaxVal = max(MaxVal, DP[i]);
}
if (n == 1)
{
cout << List[0];
}
else
{
cout << MaxVal;
}
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
점프 점프 - 11060번 백준 (0) | 2023.09.14 |
---|---|
🏳 쉬운 계단 수 / 10844번 백준 (0) | 2023.09.10 |
암호 만들기 / 1759번 백준 (0) | 2023.09.04 |
치킨 배달 / 15686번 백준 (4) | 2023.09.03 |
N-Queens / 9663번 백준 🌋🌋🌋🌋 (0) | 2023.08.31 |