기술 블로그

4811번 알약 본문

알고리즘 문제/BOJ

4811번 알약

parkit 2019. 1. 7. 16:33
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 < 0return 0;
 
    if (a[w][h] > 0return a[w][h];
 
    if (w == 0 && h == 0return 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 == 0break;
 
        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