반응형
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
- 성적평가
- boj #19237 #어른 상어
- upper_bound
- 처우산정
- 경력
- 소프티어
- 이분탐색
- 기술면접
- dfs
- softeer
- 백준
- 6987
- 13908
- 물채우기
- BOJ
- 오퍼레터
- 연결요소
- 처우협의
- 매개변수탐색
- OFFSET
- 파라메트릭
- Docker
- msSQL
- @P0
- BFS
- incr
- Kafka
- 백트래킹
- compose
- 퇴사통보
Archives
- Today
- Total
기술 블로그
1806번 부분합 본문
728x90
반응형
투 포인터 문제이다.
https://www.acmicpc.net/problem/1806
수열에서 연속된 구간의 합을 이용한 문제이다.
계속 더해가면서 S와 비교를 한다.
그러다가, S 이상이 되면 sum에서 다시 처음부터 빼가면서 길이를 줄여준다.
입출력 예제 1
10 10
1 1 1 1 1 1 1 1 1 1
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 53 54 55 56 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int N = 0, S = 0; int arr[100001] = { 0, }; int main(void) { int result = INT32_MAX; memset(arr, 0, sizeof(arr)); scanf("%d %d", &N, &S); for (int i = 0; i < N; i++) { scanf("%d", &arr[i]); } int left = 0, right = 0, sum = 0, Length = 0; while (left <= right && right <= N) { if (sum < S) { sum += arr[right++]; ++Length; } else if( sum >= S) { if (Length < result) { result = Length; } sum -= arr[left++]; --Length; } } if (result == INT32_MAX) printf("0\n"); else printf("%d\n", result); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
2178번 미로 탐색 (0) | 2018.10.27 |
---|---|
1316번 그룹 단어 체커 (0) | 2018.10.27 |
16234번 인구 이동 (2) | 2018.10.26 |
16236번 아기 상어 (0) | 2018.10.26 |
2869번 달팽이는 올라가고 싶다 (0) | 2018.10.21 |