기술 블로그

10798번 세로읽기 본문

알고리즘 문제/BOJ

10798번 세로읽기

parkit 2019. 1. 9. 21:53
728x90
반응형

https://www.acmicpc.net/problem/10798


구현 및 문자열 처리


2차원 배열로 저장하여, 출력해주면 된다.




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
#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)
{
    char s[6][17];
 
    int MAX = -1;
 
    for (int i = 0; i < 5; i++)
    {
        scanf("%s", s[i]);
 
        MAX = max(MAX, (int)strlen(s[i]));
    }
 
    for (int i = 0; i < MAX; i++)
    {
        for (int j = 0; j < 5; j++)
        {
            if (i >= strlen(s[j])) continue;
 
            printf("%c", s[j][i]);
        }
    }
 
    printf("\n");
 
    return 0;
}
cs


728x90
반응형

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

16234번 인구 이동  (0) 2019.01.14
16236번 아기 상어  (0) 2019.01.14
10819번 차이를 최대로(next_permutation 활용)  (0) 2019.01.09
16571번 알파 틱택토  (0) 2019.01.08
12759번 틱! 택! 토!  (0) 2019.01.08