반응형
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
- 백트래킹
- Docker
- 소프티어
- 오퍼레터
- msSQL
- BFS
- 성적평가
- BOJ
- upper_bound
- 이분탐색
- compose
- 매개변수탐색
- dfs
- 파라메트릭
- @P0
- softeer
- boj #19237 #어른 상어
- 백준
- 연결요소
- 기술면접
- 퇴사통보
- 처우산정
- incr
- 물채우기
- 처우협의
- OFFSET
- 6987
- 경력
- Kafka
- 13908
Archives
- Today
- Total
기술 블로그
2003번 수들의 합 2 본문
728x90
반응형
투 포인터 문제다.
https://www.acmicpc.net/problem/2003
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 | #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 main(void) { int A[10001] = { 0, }; memset(A, 0, sizeof(A)); int N = 0, M = 0; scanf("%d %d", &N, &M); for (int i = 0; i < N; i++) { scanf("%d", &A[i]); } int left = 0, right = 0, sum = 0, result = 0; while (left <= right && right <= N) { if (sum < M) { sum += A[right++]; } else if (sum >= M) { if (sum == M) ++result; sum -= A[left++]; } } printf("%d\n", result); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
13300번 방 배정 (0) | 2018.10.28 |
---|---|
11758번 CCW (0) | 2018.10.28 |
2178번 미로 탐색 (0) | 2018.10.27 |
1316번 그룹 단어 체커 (0) | 2018.10.27 |
1806번 부분합 (0) | 2018.10.27 |