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 |
Tags
- 알고리즘
- 내적
- 다이나믹 프로그래밍
- 외적
- 벡터
- 유니티
- ubuntu
- dp
- 충돌 알고리즘
- SOH
- 리눅스
- Doubly Connected Edge List
- 보로노이다이어그램
- Graham Scan
- GJK
- 백준
- Expanding Polytope Algorithm
- uclidean algorithm
- 수학
- 문제풀이
- Vector
- C++
- C
- PS
- Unity
- c#
- AABB
- linux
- 우분투
- 분할축 이론
Archives
- Today
- Total
마이 플밍 블로그
백준 1806 - 부분 합 본문
https://www.acmicpc.net/problem/1806
#include <iostream>
#include <queue>
#include <vector>
#include <math.h>
using namespace std;
int N, S, minLength, L, R;
vector<int> num;
int main() {
L = 0;
R = 0;
cin >> N >> S;
minLength = N + 1;
for (int i = 0; i < N; i++) {
int key;
cin >> key;
num.push_back(key);
}
int sum = 0;
L = 0;
R = 0;
sum = num[0];
while (L <= R && R < N) {
if (sum < S) {
R += 1;
if(R < N)
sum += num[R];
}
else {
minLength = min(minLength, R - L + 1);
sum -= num[L++];
}
}
if (minLength == N + 1)
minLength = 0;
cout << minLength << endl;
return 0;
}
투포인터를 이용한 문제
'문제풀이 > 백준' 카테고리의 다른 글
[C++]백준 14238 - 출근 기록 (0) | 2022.01.04 |
---|---|
백준 16930 - 달리기 (0) | 2022.01.04 |
백준 12851 - 숨바꼭질2 (0) | 2021.11.27 |
백준 14719 - 빗물 (0) | 2021.11.24 |
백준 16953 - A -> B (0) | 2021.10.10 |