반응형
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
- softeer
- BOJ
- 이분탐색
- @P0
- 매개변수탐색
- 성적평가
- 물채우기
- 처우협의
- 연결요소
- BFS
- Docker
- compose
- 경력
- upper_bound
- msSQL
- 백준
- 오퍼레터
- 소프티어
- 6987
- OFFSET
- 퇴사통보
- Kafka
- incr
- 백트래킹
- dfs
- 기술면접
- 13908
- 처우산정
- boj #19237 #어른 상어
- 파라메트릭
Archives
- Today
- Total
기술 블로그
4811번 알약 본문
728x90
반응형
https://www.acmicpc.net/problem/4811
개인적으로 별로좋은 문제는 아니라고 생각한다.
다른 분의 코드를 참고하였다.
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 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; long long a[31][31] = { 0, }; long long search(int w, int h) { if (w < 0) return 0; if (a[w][h] > 0) return a[w][h]; if (w == 0 && h == 0) return 1; if (w > 0) a[w][h] += search(w - 1, h + 1); if (h > 0) a[w][h] += search(w, h - 1); return a[w][h]; } int main(void) { int N = 0; while (1) { scanf("%d", &N); if (N == 0) break; cout << search(N, 0) << '\n'; } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
16571번 알파 틱택토 (0) | 2019.01.08 |
---|---|
12759번 틱! 택! 토! (0) | 2019.01.08 |
1799번 비숍 (0) | 2019.01.07 |
1074번 Z (0) | 2019.01.06 |
2026번 소풍 (0) | 2019.01.05 |