반응형
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
- 연결요소
- 백트래킹
- Kafka
- OFFSET
- 처우협의
- 퇴사통보
- 매개변수탐색
- 경력
- msSQL
- upper_bound
- dfs
- 소프티어
- 오퍼레터
- BOJ
- 물채우기
- @P0
- 6987
- 13908
- 처우산정
- incr
- softeer
- 백준
- Docker
- compose
- 기술면접
- BFS
- boj #19237 #어른 상어
- 성적평가
- 이분탐색
- 파라메트릭
Archives
- Today
- Total
기술 블로그
10798번 세로읽기 본문
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 |