기술 블로그

막대 그래프 그리기 본문

알고리즘 문제/기타

막대 그래프 그리기

parkit 2018. 10. 27. 00:40
728x90
반응형

문제)

-10 < y < 10을 만족하는 정수 y를 10개 입력한다.

입력한 정수 y는 각각 순서대로 x좌표(0 ~ 9)에 해당하는 y의 값이다.

막대그래프를 출력하시오.(단, 막대그래프의 모양은 'o'이다.)


입출력 예제

(복사용 : 1 2 0 -9 9 -8 7 4 3 0)








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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <iostream>
#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
#include <map>
 
using namespace std;
 
// y = x[index]라고 생각
 
int x[10= { 0, };
 
int main(void)
{
    int MAX = -987654321, MIN = 987654321;
 
    for (int i = 0; i < 10; i++)
    {
        scanf("%d"&x[i]);
 
        if (MAX < x[i]) MAX = x[i];
        if (MIN > x[i]) MIN = x[i];
    }
 
    for (int i = MAX; i >= MIN; i--)
    {
        if (i > 0)
        {
            printf("  %d", i);
 
            for (int j = 0; j < 10; j++)
            {
                printf(" ");
 
                if (x[j] >= i) printf("o");            
                else printf(" ");
            }
 
            printf("\n");
        }
        else if (i == 0)
        {
            printf("  0 ");
 
            for (int j = 0; j < 10; j++)
            {
                printf("%d ", j);
            }
 
            printf("\n");
        }
        else
        {
            printf(" -%d"-1*i);
 
            for (int j = 0; j < 10; j++)
            {
                printf(" ");
 
                if (x[j] <= i) printf("o");
                else printf(" ");
            }
 
            printf("\n");
        }
    }
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > 기타' 카테고리의 다른 글

달팽이  (0) 2019.03.09
Zero One Algorithm Contest 2018  (0) 2019.01.03
길이가 N인 이진수  (0) 2018.10.26
배열 속 원소들 확인하기  (0) 2018.10.05
길 확인하기  (0) 2018.09.28